首先,我的评论只是一个玩笑。
现在,对于问题:您的图像位于 div 中item column-1
,而它应该位于 div 上方(的容器item column-1
)中,即items-row cols-1 row-0
.
所以这:
<img src="/images/Articles/macbookpro-review-01-top.jpg" width="200" height="200" alt="macbookpro-review-01-top" style="float: left;">
不能进去,<div class="items-row cols-1 row-0">
或者<dl class="article-info">
你正在做什么。
它需要位于外部 div 中。所以应该在<div class="items-row cols-1 row-0">
. 所以像这样:
<div class="items-row cols-1 row-0">
<img src="/images/Articles/macbookpro-review-01-top.jpg" width="200" height="200" alt="macbookpro-review-01-top" style="float: left;">
//...and the rest of your stuff