CSS float 屬性語法
float: 浮動方向;
CSS 的 float 可以讓網頁設計師自己決定浮動的 DIV 區塊要靠左還是靠右浮動,參數設定請參閱《CSS float 浮動》篇的介紹。CSS DIV 區塊並排範例語法
<style type="text/css">
#DIV1{
width:200px; //DIV區塊寬度
line-height:50px; //DIV區塊高度
padding:20px; //DIV區塊內距,參閱:CSS padding 內距。
border:2px blue solid; //DIV區塊邊框,參閱:CSS border 邊框設計。
margin-right:10px; //靠右外距,參閱:CSS margin 邊界使用介紹範例教學。
float:left;
}
#DIV2{
width:200px;
line-height:50px;
padding:20px;
border:2px green solid;
float:left;
}
</style>
<div id="DIV1">這是並排在左邊的 DIV 區塊</div>
<div id="DIV2">這是並排在右邊的 DIV 區塊</div>
<div style="clear:both;"></div><!--這是用來清除上方的浮動效果-->
範例的並排效果#DIV1{
width:200px; //DIV區塊寬度
line-height:50px; //DIV區塊高度
padding:20px; //DIV區塊內距,參閱:CSS padding 內距。
border:2px blue solid; //DIV區塊邊框,參閱:CSS border 邊框設計。
margin-right:10px; //靠右外距,參閱:CSS margin 邊界使用介紹範例教學。
float:left;
}
#DIV2{
width:200px;
line-height:50px;
padding:20px;
border:2px green solid;
float:left;
}
</style>
<div id="DIV1">這是並排在左邊的 DIV 區塊</div>
<div id="DIV2">這是並排在右邊的 DIV 區塊</div>
<div style="clear:both;"></div><!--這是用來清除上方的浮動效果-->
這是並排在左邊的 DIV 區塊
這是並排在右邊的 DIV 區塊
延伸閱讀