我在我的网站上使用表格和表格单元格。最左边的列需要从顶部开始。相反,它走到了底部。下面是该问题的链接,其中灰色div从最底部开始。
答案 0 :(得分: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;
}