商院官网:首页的布局

来自CloudWiki
Cloud17讨论 | 贡献2019年10月30日 (三) 06:28的版本 (创建页面,内容为“源代码: <nowiki><!doctype html> <html> <head> <meta charset="utf-8" /> <title>我的网页</title> <style type="text/css">…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航搜索

源代码:

<!doctype html>
<html>
	<head>
         <meta charset="utf-8" />
         <title>我的网页</title>
         <style type="text/css">
		      .head{ width:100%;height:100px;background:#06F; }
			  .main{ width:100%;height:300px;background:#C90; }
			  .m1{ width:32%;height:300px;background:#39F;float:left;}
			  .m2{ width:32%;height:300px;background:#C60;float:left;}
			  .m3{ width:32%;height:300px;background:#F90;float:left;}
			  .clear {clear:both;}
			  .footer{ width:100%;height:100px;background:#06F; }
			  .f1{ width:100%;height:50px;background:#6FC;}
			  .f2{ width:100%;height:50px;background:#66C;}
		 </style>
    </head>
    <body>
         <div class="head"></div>
         <div class="main">
             <div class="m1"></div>
             <div class="m2"></div>
             <div class="m3"></div>
             <div class="clear"></div>
         </div>
         <div class="footer">
              <div class="f1"></div>
              <div class="f2"></div>
         </div>
    </body>
</html>