萨斯迈斯特在这里
如果使用固有比率定义元素的尺寸:
萨斯:
body,
html,
.Wrapper
{
width:100%;
height: 100%;
}
.VideoContainer
{
position: relative;
max-width: 100%;
height: 0;
overflow: hidden;
&.Sixteen-Nine {
padding-bottom: 56.25%;
}
&.Four-Three {
padding-bottom: 75%;
}
}
.VideoContainer iframe,
.VideoContainer object,
.VideoContainer embed
{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
HTML:
<div class="Wrapper">
<div class="VideoContainer Vimeo Sixteen-Nine">
<iframe src="http://player.vimeo.com/video/109777141?byline=0&portrait=0&badge=0&color=090909" class="js-only" frameborder="0" webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen=""></iframe>
</div>
</div>
有没有办法包含它,以便它调整到其容器的高度?
它当前会在保持其纵横比的同时调整其容器的宽度,但是,即使使用定义了明确高度的包装器,如果包装器的宽度与其高度相比大于其纵横比,它也会溢出容器。
我需要支持 IE9+,我不想使用 JavaScript