为了账号安全,请及时绑定邮箱和手机立即绑定

css多列布局(实例)

css多列布局(实例)

文章出处:原文地址

前言

  1. 一列布局

  2. 二列布局

  3. 三列布局

 

1 一列布局

  • 一列布局:

    复制代码

    HTML部分<!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8" />
    <title>一列布局</title>
    </head>
    <body>
    <div class="head">head</div>
    <div class="main">main</div>
    <div class="foot">foot</div>
    </body>
    </html>CSS部分
    div{text-align: center;}
    .head{height: 60px;background-color:#fae1e1;}
    .main{margin: 0 auto;height:300px;background-color:#e6686a;}
    .foot{margin: 0 auto;background-color:red;}

    复制代码

     

  • 效果图如下:

 

2 二列布局

  • 二列布局代码如下(即左右布局),二列布局有多种方法,float+margin(一侧定宽,一侧自动)、position+margin(一侧定宽,一侧自动)、float+负margin(一侧定宽,一侧自动)等,本篇用的是设定两栏的宽度的百分比,随宽度自适应变化代码如下:

    复制代码

    HTML部分<!DOCTYPE html>
    <html>
    <head>
    <title>二列布局</title>
    </head>
    <body>
    <div class="main">
    <div class="left">left</div>
    <div class="right">right</div>
    </div>
    </body>
    </html
    
    CSS部分
    body{ margin:0; padding:0; font-size:20px; font-weight:bold}
    div{ text-align:center; line-height:50px}
    .main{ width:80%; height:400px; margin:0 auto}
    .left{ width:20%; height:400px; background:#e6686a; float:left}
    .right{ width:80%; height:400px; background:#fae1e1; float:right}

    复制代码

     

  • 效果图如下:

 

3 三列布局

  • 三列布局(即左中右布局),三列布局有多种方法,float+margin(两侧定宽,中间自适应)、position+margin(两侧定宽,中间自适应)、float+负margin(两侧定宽,中间自适应)、float+position+margin(两侧自动,中间定宽)、position+margin(两侧自动,中间定宽),本篇用的是float+margin(两侧定宽,中间自适应),代码如下:

    复制代码

    HTML部分<!DOCTYPE html>
    <html>
    <head>
      <meta charset="utf-8">
      <title>JS Bin</title>
    </head>
    <body>
    <div class="left">left</div>
    <div class="center">main</div>
    <div class="right">right</div>
    </body>
    </html>CSS部分
    body{ margin:0; padding:0; font-weight:bold}
    div{ line-height:40px}
    .left{height:400px; width:200px; position: absolute; left:0; top:0;background:#fae1e1;}
    .right{ height:400px; width:200px; position:absolute; top:0;right:0;; background:#fae1e1}
    .center{ height:400px; margin:0 200px; background:#e6686a}

    复制代码

     

  • 效果图如下:


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消