<div class="wrapper">
<div class="left-bg bg-part" id="left-bg">
</div>
<div class="content-hold" id="content-hold">
</div>
<div class="right-bg bg-part" id="right-bg">
</div>
</div>
这是我编写的css代码较少。
.wrapper {
.bg-part {
width: 30px;
background: #a2ca46;
height: 100%;
position: absolute;
top: 0;
}
.left-bg {
float: left;
left: 0;
}
.right-bg {
float: right;
right: 0;
}
}
当内容在页面上占据更多位置时,左侧和右侧的高度永远不会增加。我该怎么做才能使left-bg和right-bg杠杆达到内容保持的宽度。
答案 0 :(得分:0)
我认为此链接可以帮助您了解所有内容的工作原理:http://www.alistapart.com/articles/fauxcolumns/
答案 1 :(得分:0)
一种选择是使用一行和三列的html表。根据需要设置左右列的宽度30px。