我瘋了,試圖弄清楚爲什麼這段代碼不能將這兩個div並排放置。我瘋了嗎?這是一個明顯的修復?請幫忙!謝謝爲什麼我的浮動代碼不工作?
<div id="masth" align="right">
<div id="mastleft">Creativene is a place for artists and art enthusiasts to come together to buy and sell art.<br>
<br>
Sign-up today!</div>
<div id="mastright"><img src="images/masthead.png" width="50%" height="50%">
</div>
</div>
<style>
#masth {
background: #F0F0F0;
border-radius: 50px;
width:100%;
padding: 30px;
}
#mastright {
float: left;
}
</style>
你有沒有試過把寬度添加到'mastleft' div? – jedwards