我必须使用display:table-cell:
进行div<div>
This is table cell
</div>
<div>
<h1>Some content</h1>
<h1>Some content</h1>
<h1>Some content</h1>
<h1>Some content</h1>
<h1>Some content</h1>
<h1>Some content</h1>
<h1>Some content</h1>
<h1>Some content</h1>
<h1>Some content</h1>
<h1>Some content</h1>
<h1>Some content</h1>
<h1>Some content</h1>
<h1>Some content</h1>
</div>
CSS
div {
display: table-cell;
background-color: blue;
padding: 0 20px;
}
div:nth-child(1) {
background-color: red;
padding: 0 20px;
}
但是第一个div的内容有一些额外的余量 显示表。 我检查了元素并且没有计算任何边际,但是就像你一样 可以在jsfiddle中看到,内容和顶部之间有一些空间 的div。我想知道如何移除那个空间。
提前致谢!
答案 0 :(得分:2)
只需在div中添加一个vertical-align属性,其值为&#34; top&#34;
line[line.index(' '):]
div {
display: table-cell;
background-color: #7cbaf4;
padding: 0 20px;
vertical-align:top;
}
&#13;
div {
display: table-cell;
background-color: #7cbaf4;
padding: 0 20px;
vertical-align:top;
}
div:nth-child(1) {
background-color: #FF6347;
}
&#13;
答案 1 :(得分:1)
尝试:
div {
display: inline-block; // same effect , but better
background-color: blue;
padding: 0 20px;
}
div:nth-child(1) {
background-color: red;
padding: 0 20px;
}
答案 2 :(得分:1)
只需将vertical-align:top;
添加到div
:
div {
display: table-cell;
background-color: blue;
padding: 0 20px;
vertical-align:top;
}
这将强制文本上升。小提琴:http://jsfiddle.net/aa61mLbn/2/