所以我試圖將我的section
移動到相同的一行,而不是將它堆疊在一起並轉到下一行。我怎樣才能做到這一點?如何向左浮動而不打包到下一行?
這裏是我的代碼:
<section>
<img src="http://www.w3newbie.com/wp-content/uploads/trainers.png"</>
<h1>Stay Connected!</h1>
<p>Random Text just to fill space.</p>
<img src="http://www.w3newbie.com/wp-content/uploads/location.png"</>
<h1>Oh New Jersey...</h1>
<p>Based in New Jersey I couldn't be happier where I am today...</p>
<img src="http://www.w3newbie.com/wp-content/uploads/check.png"</>
<h1>Keep Updated!</h1>
<p>Subscriber Count: 2,458<br> Twitter Followers: 869<br>Instagram</p>
</section>
,這裏是我的CSS吧:
section{
width: 29%;
float: left;
text-align: center;
}
您的HTML/CSS不會顯示您的問題。我們只看到一個箱子29%的寬度向左側飄浮 –