我想居中嵌入塊圖像的div。 這是相關的HTML:居中嵌入塊圖像
<div class = "row">
<div class = "icon"> <img src = "icon.PNG" alt="Some of the interesting stuff I've worked on."> </div>
<div class = "icon"> <img src = "icon.PNG" alt="My past experiences."> </div>
</div>
和CSS:
.row{
display: block;
}
.icon{
margin: 0 auto;
}
結果應該是圖標並排側和水平居中。現在他們被水平居中,但他們都在彼此之下。
非常感謝幫助,我是web開發新手。
感謝。
謝謝,這排隊他們並排,但它不居中。我該怎麼做呢? – FatUglyProud