mdui defines some classes for images and videos that can give them responsive characteristics and some predefined styles.
Add class .mdui-img-fluid to the img tag to make the image adapt to the width of its parent element.
Add class .mdui-video-container to the parent element of an embedded video to make the video adapt to the width of the parent element.
<div class="mdui-video-container">
<iframe
height="498"
width="510"
src="https://player.youku.com/embed/XNzUwOTk5MzE2"
frameborder="0"
allowfullscreen
></iframe>
</div>Add class .mdui-video-fluid to the video tag to make the video adapt to the width of its parent element.
<video class="mdui-video-fluid" controls>
<source src="video.mp4" type="video/mp4" /></video
>