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

圣杯布局

时间:2016-09-21 16:20:51      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:圣杯布局

<span style="line-height: 0px;"></span>圣<pre class="brush:html;toolbar:false"><br/></pre>杯布局

《圣杯布局》:

<!DOCTYPE HTML>

<html>

<head>

    <meta charset="utf-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

    <title>圣杯布局</title>

    <style type="text/css">

        * { margin: 0; padding: 0; }

        .left, .middle, .right { position: relative; float: left; min-height: 130px;}

        .container { padding: 0 220px 0 200px; overflow: hidden; }

        .left { margin-left: -100%; left: -200px; width: 200px; background: red; }

        .right { margin-left: -220px; right: -220px; width: 220px; background: green; }

        .middle { width: 100%; background: blue; word-break: break-all; }

    </style>

</head>

<body>

    <div class="container">

        <div class="middle">中间</div>

        <div class="left">左面</div>

        <div class="right">右面</div>

    </div>

</body>

</html>

圣杯布局

标签:圣杯布局

原文地址:http://1211492260.blog.51cto.com/8753515/1854757

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