红色框是一个网页 ,怎么把内容控制在那条黑框内,但是黑框里的背
html吧
全部回复
仅看楼主
level 3
红色框是一个网页 ,怎么把内容控制在那条黑框内,但是黑框里的背景可以显示在黑框外面,如内容1的背景可以显示在黑框外面
2020年10月17日 09点10分 1
level 8
<body><!-- 红框范围 -->
<div class="header container-full"><!-- 黑框范围 -->
<div class="container">
内容1
</div>
</div>
<div class="container">
其他内容
</div>
</body>
额外写点CSS:
.header {
background-color:azure;
}
.container-full {
width:100%;
}
.container {
max-width:1000px;
margin:auto;
}
2020年10月18日 08点10分 2
1