我的目标是生成这个:
<div>
Image (40px by 40px) Caption
Image (40px by 40px) Caption
Image (40px by 40px) Caption
</div>
我当前的代码生成包含在 div 中的图像,其中包含上一个列表项,而不是图像正下方的图像
我的代码结构是
<div>
<ul>
<li>
<img/>
<span>caption</span>
</li>
.....
</ul>
</div>
我需要什么 CSS,这样我才能避免做我看到的包装?
我现在对这些元素拥有的 CSS 是
li img{
position:absolute;
bottom:0;
display: block;
}
li{
position:relative;
}
.box (this is for div)
{
padding: 4px 15px;
border: 1px solid #ccc;
margin: 0 0 10px 0;
border-radius: 15px;
-moz-border-radius: 15px;
}