100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > html安百分比布局 移动端百分比布局

html安百分比布局 移动端百分比布局

时间:2019-07-17 04:01:31

相关推荐

html安百分比布局 移动端百分比布局

做播放器页面需要是实现播放器宽度与列表宽度比为2 :5,播放器宽高比为9 : 16

实现代码:

* {

margin: 0;

padding: 0;

}

html,

body {

width: 100%;

height: 100%;

}

.wraper {

width: 100%;

background-color: #09F;

padding-top: calc(100% / (16/9 + 2/5));

position: relative;

}

.wraper div {

display: inline-block;

height: 100%;

position: absolute;

top: 0;

}

/* h* (16/9 + 2/5) = 100% */

.wraper .player {

width: calc(100% * 5/7);

background: black;

}

.wraper .list {

width: calc(100% * 2/7);

background: #09F;

right: 0;

}

实现效果:

image.png

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。