佈局css
固定佈局 html代碼html
<!doctype html> <html> <head> <meta charset="utf-8" /> <title>湖南城市學院</title> <link rel="stylesheet" type="text/css" href="css/hncu.css" /> </head> <body> <div id="hncu_header"> </div> <div id="hncu_content"> <div id="hncu_left"></div> <div id="hncu_center"></div> <div id="hncu_right"></div> </div> <div id="hncu_footer"> </div> </body> </html>
固定佈局 css代碼佈局
@charset "utf-8"; *{ margin: 0px; padding: 0px; } #hncu_header{ width: 1000px; height: 200px; background-color: skyblue; margin:0px auto; } #hncu_content{ width: 1000px; height: 600px; background-color: yellow; margin:0px auto; } #hncu_left{ width: 200px; height: 500px; background-color: green; margin-top:50px; float:left; } #hncu_center{ width: 580px; height: 500px; background-color: #bfc; margin-top:50px; margin-right: 10px; margin-left: 10px; float:left; } #hncu_right{ width: 200px; height: 500px; background-color: pink; margin-top:50px; float:left; } #hncu_footer{ width:1000px; height:200px; background-color:skyblue; margin:0px auto; }
效果圖:spa