提供一个容器,设置容器的高度为0,再设置padding-bottom为56.25%(因为padding的百分比是按照容器宽度计算的,所以由padding来撑开容器高度,而不是height,保证了容器的宽高比例),最后设置视频绝对定位,其宽高为容器的100%
.wrap{
height: 0;
padding-bottom: 56.25%; /* 16:9 */
position: relative;
width: 100%;
}
.wrap .video{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
转自:http://imweb.io/topic/555a92f76da9e441601d6e94
时间: 2024-10-23 11:35:18