CSS多种布局方式自我实现-三栏布局(一)

一、float实现三栏布局

1、HTML代码:

<!DOCTYPE html>
<html>
<head>
<meta name="description" content="第一个三栏布局" />
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div id="container">
    <div id="topbar">This is topbar</div>
    <div id="navbar">This is nav bar</div>
    <div id="main">
      <div id="column_left">This is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_left</div>
      <div id="column_right">This is column_rightThis is column_rightThis is column_rightThis is column_rightThis is column_rightThis is column_rightThis is column_right</div>
      <div id="column_right_adsense">This is column right adsense This is column right adsense This is column right adsense</div>
      <div id="clear">this is clear</div>
    </div>
    <div id="footer">This is footer</div>
  </div>
</body>
</html>

2、CSS代码:

*{
  font-size:12px;
  padding: 0;
  margin:0;
}
body{
  background-color: #eee;
}
#container{

  background-color: #83A82B;

  width:500px;
  margin:50px auto;
}
#topbar{
  height:25px;
  background-color: #31DB20;
}
#column_left{
  float:left;
  width:250px;
  background-color: red;
}
#column_right{

  width:150px;
  background-color: #0f0;
  float:left;
}
#column_right_adsense{
  background-color: #00f;
  float:left;
  width:100px;
}
#clear{
  clear:both;
  background-color: pink;
}
#footer{
  background-color: piple;
}

3、结果展示:

三栏布局

4、注意事项

container、main不直接设置height,由内容区撑起高度,float后加clear元素清除浮动,撑起#main区高度。

5,以上实现方式的缺点

由于main宽度的固定,一旦某一栏添加了padding或margin,则会导致浮动栏下滑(浮动滑移),添加大图片或是没有空格的长字符串也都会打乱布局。

滑动漂移

6,滑动漂移的三种解决办法

6.1 从设定的元素宽度中减去padding或margin的影响。

如:column_left增加padding:1px,则将其宽度减去2px,效果如下:

元素宽度减去影响值

 但是此方法操作起来比较麻烦,每次添加需要计算影响并修改代码。

6.2 在元素内部添加新div包裹元素内容

设置padding和margin时应用于这个元素。部分代码如下:
 HTML:
<div id="column_left"><div id="column_left_inner">This is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_left</div></div>
 CSS:
#column_left_inner{ padding:10px; margin:10px; }

元素内部再嵌套div包裹内容

 此方法较上一种方法更为简单。

6.3 box-sizing:border-box

为容器内各元素设置box-sizing:border-box,将盒模型改为IE盒模型,即盒子宽度=content area+padding+border;注意此方法无法解决margin造成的布局打乱。
 部分CSS代码

#column_left{
  box-sizing:border-box;
  float:left;
  width:250px;
  background-color: red;
  padding:10px;
  border:3px solid black;
}
#column_right{
  box-sizing:border-box;
  width:150px;
  background-color: #0f0;
  float:left;
}
#column_right_adsense{
  box-sizing:border-box;
  background-color: #00f;
  float:left;
  width:100px;
}

效果图:

box-sizing:border-box

 此方法最为简单,但是不能消除margin的设置引起的布局混乱。

二、flex三栏布局

flex布局适用于线型布局,使用flex布局能直接有效的避免因padding或border等造成的布局混乱。使用方便,推荐使用此方法。
HTML代码:

<!DOCTYPE html>
<html>
<head>
<meta name="description" content="flex实现三栏布局" />
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div id="container">
    <div id="topbar">This is topbar</div>
    <div id="navbar">This is nav bar</div>
    <div id="main">
      <div id="column_left">This is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_leftThis isdafsssssssssssssssssssssssssssssssssssssssssssssssssssss column_leftThis is column_leftThis is column_left</div>
      <div id="column_right">This is column_rightThis is column_rightThis is column_rightThis is column_rightThis is column_rightThis is column_rightThis is column_right</div>
      <div id="column_right_adsense">This is column right adsense This is column right adsense This is column right adsense</div>

    </div>
    <div id="footer">This is footer</div>
  </div>
</body>
</html>

CSS代码:

*{
  font-size:12px;
  padding: 0;
  margin:0;
}
body{
  background-color: #eee;
}
#container{

  background-color: #83A82B;

  width:500px;
  margin:50px auto;
}
#topbar{
  height:25px;
  background-color: #31DB20;
}

#main{
  display:flex;
  flex-flow:row nowrap;
  
}
#column_left{
  background-color: #f00;
  flex-grow:1;
  width:150px;
  padding:10px;
}
#column_right{
  background-color: #0f0;
  flex-grow:1;
  width:150px;
}
#column_right_adsense{
  flex-grow:1;
  background-color: #00f;
  width:150px;
}


#footer{
  background-color: piple;
}

结果展示:

flex实现三栏布局

三、绝对定位实现三栏布局

1. HTML代码

<!DOCTYPE html>
<html>
<head>
<meta name="description" content="flex实现三栏布局" />
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div id="container">
    <div id="topbar">This is topbar</div>
    <div id="navbar">This is nav bar</div>
    <div id="main">
      <div id="column_left">This is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_leftThis is column_left</div>
      <div id="column_center">This is column_rightThis is column_rightThis is column_rightThis is column_rightThis is column_rightThis is column_rightThis is column_right</div>
      <div id="column_right">This is column right adsense This is column right adsense This is column right adsense</div>

    </div>    <!--main完-->
    <div id="footer">This is footer</div>
  </div>
</body>
</html>

CSS代码:

*{
  font-size:12px;
  padding: 0;
  margin:0;
}
body{
  background-color: #eee;
}
#container{
  background-color: #83A82B;
  max-width:500px;
  margin:50px auto;
}
#topbar{
  height:25px;
  background-color: #31DB20;
}

#main{
  border:1px solid black;
  position:relative;
}
#column_left{
  background-color: #f00;
  position:absolute;
  top:0;
  left:0;
  width:150px;
height:100%;
}
#column_center{
  background-color: #0f0;
 margin:0 150px;

}
#column_right{
  background-color: #00f;
  position:absolute;
  top:0;
  right:0;
  width:150px;
  height:100%;
}

#footer{
  background-color: red;
  /* border:5px solid red; */
}

效果展示:

绝对定位实现的三栏布局
  1. CSS学习笔记(八) 页面布局之三栏-固定宽度布局
  1. CSS 布局:40个教程、技巧、例子和最佳实践
  2. 我熟知的三种三栏网页宽度自适应布局方法
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容