首页 > 代码库 > 【CSS3】布局
【CSS3】布局
浮动布局:
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title></title> 6 <link rel="stylesheet" type="text/css" href="style.css"> 7 </head> 8 <body> 9 <header>header</header> 10 <aside>aside</aside> 11 <section>section</section> 12 <footer>footer</footer> 13 </body> 14 </html>
*{ margin:0; padding: 0; } header{ height: 100px; background:rgba(10,180,10,0.5); } aside{ width: 30%; height:450px; background:rgba(180,10,10,0.5); float: left; border:1px solid blue;/*aside的width加上section的width等于100%,此句会多出2px宽,影响正常布局。*/ box-sizing: border-box;/*content-box总宽不包括外边框。border-box总宽包括外边框,可以解决上面那个问题。*/ } section{ width: 70%; height: 450px; background:rgba(10,10,180,0.5); float: left; } footer{ height: 100px; background:pink; clear: left; }
【CSS3】布局
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。