当我发现问题并且无法自己解决时,我只是在调整网页设计。
我在同一个 div 中编写了标题和文章图片,并且在 div 的底部有一个边框。我的问题:边框紧跟在标题之后,并且没有整合我的图片。
看看这个小提琴,看看我的意思:点击我!
这是我的代码:
<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;
}