我有以下HTML代码:
<div class="wrapper" style="float:left; height:900px;">
<div class="inbox"></div>
<div class="message">
<div style="width:100%; border-bottom:1px #ddd solid; height:38px;"></div>
</div>
</div>
和css
.inbox {
height: 100%;
width: 215px;
border-bottom:none;
border-top:none;
border-left: 1px #ddd solid;
border-right: 1px #ddd solid;
margin-left:50px;
float: left;
}
#inbox {
text-decoration: none;
color:#444;
}
.message {
width:392px;
height:100%;
float: left;
}
正如您所见,收件箱的两边都有边框。我想让这些boders从包装的顶部到底部,但我不会。只要收件箱div中的数据是..
我希望你理解我的问题,最好的问候Emil