經典佈局案例(一):html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>CSS佈局</title> </head> <body style="margin: 0"> <div style=" width: 200px;height:500px;float: left"></div> <div style="height: 300px;overflow: hidden"></div> <div style="height: 200px;clear: both"></div> </body> </html>
上述代碼定義了三個div塊,用到了float浮動屬性、overflow屬性和clear屬性;(注意:具備float屬性的div塊的位置會影響頁面顯示效果)佈局
頁面效果以下:spa
其中紅色div塊爲定寬綠色和藍色不定寬。code
轉載自本人ITeye連接:http://xiaozhuang0706.iteye.com/blog/2262196htm