用div布局,css控制
//编辑器用的是sublime
<!DOCTYPE html> <html> <head> <title>Div buju </title> </head> <style> #continer{ height: 1500px; width: 1000px; background: pink; } #header{ height: 300px; background: green; } #bodyer{ height: 600px; background: white; } #b1{ height: 600px; width: 600px; background: blue; float:left; } #b2{ height:300px; width: 400px; background: red; float:right; } #footer{ height: 200px; background: gray; } </style> <body> <div id="continer"> <div id="header"></div> <!-- 头 --> <div id="bodyer"> <div id="b1"></div> <!--b1,b2为bodyer中的布局 --> <div id="b2"></div><!-- 宽度值之和不能大于continer的宽 度,否则不能并排显示。--> </div> <div id="footer"></div> <!-- 尾 --> </div> </body> </html>
4.注意编码问题,一般使用UTF-8 能显示中文