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

二列布局 左边固定宽度 右边响应

时间:2016-05-15 16:40:50      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>二列布局 左边固定宽度 右边响应</title>
<style>
html{
height: 100%;
}
body{
height: 100%;
margin: 0;
padding: 0;
}
.left{
width: 200px;
height: 100%;
background-color: #1b6d85;
position: absolute;
left: 0;
top: 0;
}
.right{
width: 100%;
height: 100%;
background-color: #255625;
margin-left: 200px;
}
</style>
</head>
<body>
<div class="left">
哈哈 嘿嘿 呵呵呵 聊天止于呵呵
</div>
<div class="right">
你好 我好 大家好
</div>
</body>
</html>

二列布局 左边固定宽度 右边响应

标签:

原文地址:http://www.cnblogs.com/dxa304814183/p/5495329.html

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