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

使用绝对定位进行三列布局

时间:2016-09-06 18:24:39      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

在布局中有一种特殊的情况,当布局中分多个列,并且需要对其中的不部分列进行规定宽度,需要利用绝对定位进行布局。

用三列布局为例,我们规定左列的宽度为200,右列的宽度为300,中间列的宽度自适应,即是整个body宽度除去左右列的宽度。

具体思路:将左右列设为绝对定位,使他们紧贴在左右边。将中间列的margin左右边距设为左右列的宽度。(一般我们为了美观将边距多设10px)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>三列布局</title>
<style type="text/css">
body{ margin:0; padding:0; font-size:30px; font-weight:bold}
div{ line-height:50px}
.left{ width:200px; height:600px; background:#ccc; position:absolute; left:0; top:0}
.main{ height:600px; margin:0 310px 0 210px; background:#9CF}
.right{ height:600px; width:300px; position:absolute; top:0; right:0px; background:#FCC;}
</style>
</head>

<body>

<div class="left">left</div>
<div class="main">middle</div>
<div class="right">right</div>
</body>
</html>

 

使用绝对定位进行三列布局

标签:

原文地址:http://www.cnblogs.com/xiaoqiuer/p/5846695.html

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