请参阅JSfiddle:http://jsfiddle.net/MU2y2/
底部的div没有正确对齐,但是我找不到原因。
我认为这必须与显示内联块有关。但是,没有最高利润
<div class="kaders">
<div class="rij">
<div class="kader" href="http://www.checkjekamer.nl/check/huurZelfstandig">
<h1>Zelfstandig</h1>
<p>Check hier je kamer als je in <b>zelfstandige</b> woonruimte woont</p>
</div>
<div class="kader" href="http://www.checkjekamer.nl/check/huurOnzelfstandig">
<h1>Onzelfstandig</h1>
<p>Check hier je kamer als je in <b>onzelfstandige</b> woonruimte woont</p>
</div>
</div>
<div class="rij">
<div class="kader" href="http://www.checkjekamer.nl/check/huurToeslag">
<h1>Huurtoeslag</h1>
<p>Check hier de hoogte van je <b>huurtoeslag</b></p>
</div>
<div class="kader" href="http://www.checkjekamer.nl/check/brandveiligheid">
<h1>Brandveiligheid</h1>
<p>Check hier de <b>brandveiligheid</b> van je kamer</p>
</div>
</div>
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
body{
font-family:Open Sans;
}
/* background-color: #f7f7f7;
color:#d10000;
*/
.kaders{
text-align:center;
}
.kader{
cursor:pointer;
display:inline-block;
width:200px;
height:200px;
background-color: #f7f7f7;
margin:10px;
margin-top:0;
}
.rij{
display:block;
border:1px solid pink;
}
.kader h1{
font-size:1.1em;
}
最佳答案
只需将vertical-align: text-top;
添加到您的.kader
中
进一步了解vertical-align
here
.kader{
cursor:pointer;
display:inline-block;
width:200px;
height:200px;
background-color: #f7f7f7;
margin:10px;
margin-top:0;
vertical-align: text-top;
}
DEMO
关于css - 内联div未正确对齐,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24554801/