我无法将这两个图像排列在我想要的位置 - 我正在尝试进行网格样式显示,但由于某种原因(尽管使用 display: inline),图像出现在不同的行上。
我尝试编辑“图形”元素的宽度(因为我猜这就是问题所在)但它只是缩小了所有内容而不是我想要的 - 任何人都可以帮助我吗?
HTML
<div id="blade" class="tab-content">
<div id="simpleCart_shelfItem">
<figure>
<img src="http://i.imgur.com/abi4hJu.png" class="mini-img" />
<figcaption class="item_price">$17,000</figcaption>
<span class="item_name">Gomai Blade</span>
</figure>
</div>
<div id="simpleCart_shelfItem">
<figure>
<img src="http://i.imgur.com/IFAtrSy.png" class="mini-img" />
<figcaption class="item_price">$1,682</figcaption>
<span class="item_name">Gomai Blade</span>
</figure>
</div>
</div>
CSS
.mini-img {
width: 20%;
cursor: pointer;
}
.builder {
height: 20%;
text-align: center;
padding-bottom: 10px;
width: 50%;
}
.builder fieldset {
border: 1px solid black;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.builder fieldset legend {
text-align: left;
}
.tab-content {
margin-top: 10px;
}
.tab-content #simpleCart_shelfItem {
display: inline;
}
.tab-content #simpleCart_shelfItem .item_name {
display: none;
}
.tab-content #simpleCart_shelfItem figure {
width: auto;
}
我试图在每个单独的图像下实现一种“标题”效果,但我仍然希望图像以一种“网格”格式排列 - 我完成了第一部分(显然)但它是第二部分给我的麻烦。我希望避免使用桌子,但我不确定这是否更适合这个。