Html 經典佈局(二)

經典佈局案例(二):html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>CSS佈局</title>
</head>
<body>
<div style=" height: 150px"></div>
<div style=" width: 200px;height: 400px;float: left"></div>

<div style="height: 300px;overflow: hidden">

    <div style="height: 300px;width: 200px;float: right"></div>

</div>

<div style="height: 150px;clear: both"></div>

</body>
</html>

  上述代碼定義了五個div塊,用到了float浮動屬性、overflow屬性和clear屬性;其中用到了div塊的嵌套。佈局

頁面效果以下:spa

其中紅色和藍色div塊爲定寬綠色、黃色和灰色不定寬。 code

轉載自本人ITeye連接:http://xiaozhuang0706.iteye.com/blog/2262451htm

相關文章
相關標籤/搜索