私はを囲む<a>
を持っていて、画像もいくつかあり、<h2>
とテキストの段落があります。 <a>
はすべてinline-block
です。 H2が2本の線に伸びるときはいつでも、次の<a>
がオフセットされます。以下はスクリーンショットです。H2内のインラインブロック奇妙なオフセット
HTML:
<a href="#">
<div>
<div class="imgOverflow">
<img src="/hello/there">
</div>
<h2>This is the title</h2>
<p>This is a paragraph</p>
</div>
</a>
CSS:
a {
display:inline-block;
font-size:16px;
border:1px solid grey;
width:260px;
margin:5px;
color:black;
overflow: hidden;
}
div {
display:block;
padding:5px;
width:250px;
height:300px;
}
p {
font-size:12px;
text-align:justify;
}
h2 {
margin:5px 0 10px 0;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}
.imgOverflow {
margin:-5px 0 0 -5px;
width:260px;
padding:0;
overflow:hidden;
height:130px;
display:block;
}
誰もが非常に参考になること、これを回避するために、CSSプロパティのいくつかの並べ替えを知っている場合。ありがとうございました。
ちょうどメモ: 'アンカー 'の内側に' div'sをネストするのは悪い習慣です。 – Chris