码迷,mamicode.com
首页 > 其他好文 > 详细

一列定宽,一列自适应

时间:2015-12-23 01:51:47      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
/* 一列顶宽200px,外边距10,一列自适应 */
*{margin: 0;padding: 0;}
.aa{text-align: center; line-height: 200px; color: white;}

/* 单浮动 */
/*.bb{float: left; width: 200px; height: 200px; }*/
/*.cc{height: 200px; margin-left: 210px; background-color: blue;}*/

/* 双浮动;现代浏览器 calc()计算 */
/*.bb{float: left; width: 200px; height: 200px; }*/
/*.cc{float: right; width:calc(100% - 210px); height: 200px; background-color: blue; }*/

/*主栏定位*/
/*.aa{position: relative; text-align: center; line-height: 200px; color: white; padding-left: 210px; }*/
/*.bb{position: absolute; top: 0; left: 0; width: 200px; height: 200px; }*/
/*.cc{width: 100%; height: 200px; background-color: blue;}*/

/*侧栏定位*/
/*.aa{position: relative; text-align: center; line-height: 200px; color: white;}*/
/*.bb{width: 200px; height: 200px; }*/
/*.cc{position: absolute; left: 210px; top:0; right: 0; height: 200px; background-color: blue;}*/

/* Tab */
/*.aa{display: table; text-align: center; line-height: 200px; color: white;}*/
/*.bb{width: 200px; height: 200px; margin-right: 10px; }*/
/*.cc{display: table-cell; width: 100%; height: 200px; background-color: blue;}*/

</style>
</head>
<body>
<div class="aa">
<div class="bb">bb</div>
<div class="cc">cc</div>
</div>
</body>
</html>

一列定宽,一列自适应

标签:

原文地址:http://www.cnblogs.com/nullObj/p/5068603.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!