我正在使用數字標籤來顯示圖像。圖像垂直添加。我嘗試使用div作爲顯示內聯塊的樣式。但它似乎並不奏效。我無能爲力。任何有關如何使其水平顯示的想法。如何水平顯示圖像
<style>
figure {
display: block;
margin-top: 1em;
margin-bottom: 1em;
margin-left: 40px;
margin-right: 40px;
}
</style>
<figure>
<img src="img_pulpit.jpg" alt="The Pulpit Rock" width="304" height="228">
</figure>
<figure>
<img src="img_pulpit.jpg" alt="The Pulpit Rock" width="304" height="228">
</figure>
<figure>
<img src="img_pulpit.jpg" alt="The Pulpit Rock" width="304" height="228">
</figure>
我認爲inline-block的工作,但需注意的是,如果你是屏幕或窗口更小,元素不能水平放置時,它會垂直放置。 – Roljhon
你可以很容易地找到一些答案,只需谷歌它有很多方法來做到這一點。 – Stickers
是的,我沒有谷歌,發現內聯塊可能工作,但它似乎沒有工作。後來我明白我的頁面中有其他樣式可以覆蓋。 –