問題を見つけて、自分でそれを解決できなかったとき、私はちょうどウェブデザインを適応させていました。
見出しと記事の画像を同じ div にコーディングし、div の下部に境界線を付けました。私の問題: 境界線がタイトルの直後に表示され、画像が統合されません。
このフィドルをチェックして、私が何を意味するかを確認してください: Click me!
これが私のコードです:
<div class="latestarticle">
<a class="articletitle" href="#" >Guitar Hero Experts Melt Your Face Off</a>
<div class="articlepicture">
</div>
およびCSS:
.latestarticle {
border-bottom: solid 1px #CCC;
padding: 0px;
margin-top: 12px;
font-size: 12px;
}
.articletitle {
color: #CD5700;
text-decoration: none;
font-weight: bold;
font-size: 14px;
margin-bottom: 5px;
}
.articlepicture {
height: 76px;
width: 136px;
float: left;
margin-top: 12px;
margin-right: 9px;
border: solid #A3A3A3 2px;
}