作为一个PHPer,在前端方面javascript、jquery这些的日常工作还搞的定。可对于div+css这些东西可就头疼了,所以现在开始学习CSS
跟着燕十八的教程开始从最基础学起,首先练习一个简单首页的布局
<html> <head> <title>首页布局</title> <style> #container { width: 1200px; background-color: blue; } #header { width: 1200px; height: 100px; background: red; } #main { width: 1200px; height: 500px; background: black; } #four { width: 580px; height: 230px; background: green; float: left; margin: 10px; } #footer { width: 1200px; height: 100px; background: blue; } </style> </head> <body> <div id="container"> <div id="header"> </div> <div id="main"> <div id="four"></div> <div id="four"></div> <div id="four"></div> <div id="four"></div> </div> <div id="footer"> </div> </div> </body> </html>
显示效果: