我试图通过使用负边距顶部将两个嵌套的div对齐到一行,但Firefox(FF)和Chrome上的渲染完全不同。以下是http://jsfiddle.net/2SK5t/
上的简单示例HTML
<div class='row_custom'>
<div>Hello World</div>
</div>
<div class='row_custom'>
<div class='row_2'>Hello World</div>
</div>
CSS
.row_custom{
margin-right: 0px;
margin-left: 0px;
display: table;
content: " ";
}
.row_2{
color:blue;
margin-top: -20px;
}
答案 0 :(得分:0)
删除display: table;
,然后匹配。