首页 > 代码库 > 慕课笔记利用css进行布局【混合布局练习】
慕课笔记利用css进行布局【混合布局练习】
通过学习div的布局,以一个简单的内容管理网站的布局为例子,用div+css进行简单的网页布局,加深学印象:
<html> <head> <title>CSS+div布局学习</title> <style type="text/css"> body{margin:0;padding:0;text-align:center} .head{height:230px;width:960px;background:#f96;margin:0 auto} .cat{height:30px;width:960px;background:#f80;margin:3 auto} .content{height:806px;width:960px;background:#fff;margin:3 auto} .content_left{height:800px;width:760px;background:#fff;float:left} .leftone{height:250px;width:760px;background:#666;} .lefttwo{height:300px;width:760px;background:#fff; margin:3 0 0 0} .leftthree{height:250px;width:760px;background:#999; margin:3 0 0 0} .content_right{height:806px;width:197px;background:#00f;float:right;margin:0 0 0 3} .lefttwo_l{height:300px;width:360px;background:#cc3;float:left} .lefttwo_r{height:300px;width:397px; background:#cc9;float:right;margin:0 0 0 3} .footer{height:30px;width:960px;background:#f80;margin:3 auto} </style> </head> <body> <div class="head">logo位960*230</div><!--头部logo--> <div class="cat">导航栏位置960*30</div><!--导航栏--> <div class="content"> <div class="content_left"><!--内容左侧--> <div class="leftone">左侧第一栏760*250</div><!--左侧第一栏--> <div class="lefttwo"><!--左侧第二栏--> <div class="lefttwo_l">左侧第二栏左360*300</div><!--左侧第二栏的左侧--> <div class="lefttwo_r">左侧第二栏右197*300</div><!--左侧第二栏右侧--> </div> <div class="leftthree">左侧第三栏760*250</div><!--左侧第三栏--> </div> <div class="content_right"> 右侧内容位197*806 </div><!--内容右侧--> </div><!--内容--> <div class="footer">底部位置960*30</div> </body> </html>
效果如下:
慕课笔记利用css进行布局【混合布局练习】
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。