html页面不论如何缩放也不改变布局的相对位置
body{min-width: 1200px;height: 2000px;/*background: lightblue;*/position: relative;}在最外层div(对于你的项目来说)设置最小宽度和 相对定位
·
body{
min-width: 1200px;
height: 2000px;
/*background: lightblue;*/
position: relative;
display:flex;
justify-content:center;
}
header{
width:1200px;
}
在最外层div(父代)设置 最小宽度, 相对定位,弹性布局,在次一层的盒子(子代)设置 宽度。
更多推荐
所有评论(0)