标签:style blog http color io os ar sp div
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>圣杯布局</title> <style> body{margin:0;} .center{height:600px;background:#f60;margin:0 200px;} .left{width:200px;background:#fc0;height:600px; position:absolute;left:0;top:0;} .right{width:200px;background:#fcc;height:600px;position:absolute;right:0;top:0;} </style> </head> <body> <div class="center"></div> <div class="left"></div> <div class="right"></div> </body> </html>
圣杯布局(目的就是为了实现自适应分辨率)
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>等高布局(目的就是实现左右两边的高度等高,并且高度有内容撑开)</title> <style> body{margin:0;} .wrap{ width:900px;margin:0 auto;overflow:hidden;} .left{width:200px;background:Red;float:left;padding-bottom:10000px;margin-bottom:-10000px;} .right{width:700px;background:blue;float:right;padding-bottom:10000px;margin-bottom:-10000px;} </style> </head> <body> <div class="wrap"> <div class="left"> 页面内容<br/> 页面内容<br/> 页面内容<br/> 页面内容<br/> 页面内容<br/> 页面内容<br/> 页面内容<br/> </div> <div class="right"> 页面内容<br/> 页面内容<br/> 页面内容<br/> 页面内容<br/> 页面内容<br/> 页面内容<br/> 页面内容<br/> 页面内容<br/> 页面内容<br/> 页面内容<br/> 页面内容<br/> 页面内容<br/> 页面内容<br/> 页面内容<br/> </div> </div> </body> </html>
等高布局(目的就是实现左右两边的高度等高,并且高度有内容撑开)
圣杯布局(目的就是为了实现自适应分辨率)和等高布局(目的就是实现左右两边的高度等高,并且高度有内容撑开)
标签:style blog http color io os ar sp div
原文地址:http://www.cnblogs.com/codc-5117/p/4022300.html