暑期实践——7.30

2、三列布局样式

(1)两列定宽中间自适应的三列结构
案例5

<html>
<head>
<title>两列定宽中间自适应的三列结构</title>
    <style type="text/css">
        *{
            margin: 0;
            padding: 0;
        }
        body{
            font-family: "宋体";
            font-size: 18px;
            color: #000;
        }
        #header{
            height: 50px;
            background: #0cf;
        }
        #container{
            overflow: auto;
        }
        #mainBox{
            float: left;
            width: 100%;
            background: #6ff;
            height: 200px;
        }
        #content{
            height: 200px;
            background: #ff0;
            margin: 0 210px 0 310px;
        }
        #submainBox{
            float: left;
            height: 200px;
            background: #c63;
            width: 300px;
            margin-left: -100%;
        }
        #sideBox{
            float: left;
            height: 200px;
            width: 200px;
            margin-left: -200px;
            background: #c63;
        }
        #footer{
            clear: both;
            height: 50px;
            background: #3cf;
        }
    </style>
</head>

<body>
    <div id="header">这里是header区域</div>
    <div id="container">
        <div id="mainBox">
            <div id="content">主要内容区域——常用的CSS布局</div>
        </div>
        <div id="submainBox">次要内容区域——常用的CSS布局</div>
        <div id="sideBox">这里是侧边栏</div>
    </div>
    <div id="footer">这里是footer区域,放置版权信息等内容</div>
</body>
</html>

 (2)三列自适应结构

三列自适应结构的特点:

①三列都设置为自适应宽度。

②中间列的主要内容首先出现在网页中。

③可以允许任一个列的内容为最高。

案例6

<html>
<head>
<title>两列定宽中间自适应的三列结构</title>
    <style type="text/css">
        *{
            margin: 0;
            padding: 0;
        }
        body{
            font-family: "宋体";
            font-size: 18px;
            color: #000;
        }
        #header{
            height: 50px;
            background: #0cf;
        }
        #container{
            overflow: auto;
        }
        #mainBox{
            float: left;
            width: 100%;
            background: #6ff;
            height: 200px;
        }
        #content{
            height: 200px;
            background: #ff0;
            margin: 0 31% 0 31%;
        }
        #submainBox{
            float: left;
            height: 200px;
            background: #c63;
            width: 30%;
            margin-left: -100%;
        }
        #sideBox{
            float: left;
            height: 200px;
            width: 30%;
            margin-left: -30%;
            background: #c63;
        }
        #footer{
            clear: both;
            height: 50px;
            background: #3cf;
        }
    </style>
</head>

<body>
    <div id="header">这里是header区域</div>
    <div id="container">
        <div id="mainBox">
            <div id="content">主要内容区域——常用的CSS布局</div>
        </div>
        <div id="submainBox">次要内容区域——常用的CSS布局</div>
        <div id="sideBox">这里是侧边栏</div>
    </div>
    <div id="footer">这里是footer区域,放置版权信息等内容</div>
</body>
</html>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值