我在我的网站中使用表格和表格单元格。最左边的列需要从顶部开始。相反,它走到了底部。下面是该问题的链接,其中灰色 div 从最底部开始。
问问题
411 次
1 回答
0
目前尚不清楚您希望达到的最终结果。但是,通过向width
每个元素添加一个像素,它加起来小于或等于容器宽度,将阻止您看到的环绕。
HTML:
<div class="parent">
<div class="child">
<fieldset>
a
</fieldset>
</div>
<div class="child" >
<div class= "newChildLeft">
a <br/> b<br/> b<br/> b<br/>
</div>
<div class= "newChildRight">
b<br/> b<br/> b
</div>
</div>
</div>
CSS:
.parent {
width: 100px;
display: table;
border: 1px solid green;
height: 100%
}
.child {
background: blue;
display: table-cell;
height: inherit;
width: 50px;
}
.newChildLeft {
float: left;
width: 25px;
}
.newChildRight {
float: right
width: 25px;
}
.child + .child {
background: red;
width: 50px;
}
fieldset {
height: 100%;
background-color: #666;
width: 50px;
}
于 2012-02-03T01:38:41.157 回答