1. 程式人生 > >html中div標籤怎麼用?

html中div標籤怎麼用?

div現在一般網頁的佈局都是使用的div+css來佈局,div的話,就是通過。

<div>

<div><p></p></div>

</div>

div的巢狀使用來完成整個網頁的佈局,你可以將div理解成一個一個的塊,然後在div塊中寫入P等等標籤,然後再通過CSS來修飾就行了,如高度,寬度,背景。

<div style="background:#f90; text-align:center;">test</div>

<div style="background:#f60"><span>usemen:</span><input type="text" style="border:1px solid #ccc; width:200px; height:20px;" ></div>

<div style="background:#f60"><span>usemen:</span><input type="text" style="border:1px solid #ccc; width:200px; height:20px;" ></div>