-2
我在將我的網站主頁上的3個圖像與文本並排排列時出現問題。前兩張圖像完全對齊並居中,但最後一張圖像不會移動並落下。相反,它會落在我頁面上其他圖像的左側。這裏是我使用的代碼:在網站正文中並排排列三個圖像
HTML
.picture_row li {
float: left;
display: inline;
font-family: "Arial";
}
<div class="picture_row">
<ul>
<li>
<h3>Custom Web Designs</h3>
<img src="http://lorempixel.com/300/250" width="400" height="250" />
<h5>Represent your business with a Custom Web Design.</h5>
</li>
<li>
<h3>Responsive Web Designs</h3>
<img src="http://lorempixel.com/300/250" width="400" height="250" />
<h5>Responisve Web Design allows for better viewing experience on mobile devices</h5>
</li>
<li>
<h3>Affordable Pricing</h3>
<img src="http://lorempixel.com/300/250" width="300" height="250" />
<h5>Our competitive pricing lets you stay within your budget while gettting quality custom design work.</h5>
</li>
</ul>
</div>
我有第三個標題負擔得起的價格
感謝您的任何幫助的麻煩提前
您頁面需要至少1100px寬以便有足夠的空間讓三個圖像顯示在一行中。小屏幕怎麼樣,你想要一個響應式佈局? –
是的,我想要一個響應式佈局 – sonny