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

双飞翼布局

时间:2021-05-24 14:20:23      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:图片   alt   load   ack   idt   一个   back   com   center   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>双飞翼布局</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        .box {
            height: 600px;
        }

        .left {
            float: left;
            width: 200px;
            height: 600px;
            margin-left: -100%;
            background: pink;
        }

        .center {
            float: left;
            width: 100%;
            height: 600px;
            background: aquamarine;
        }

        .content {
            margin-left: 200px;
            margin-right: 200px;
            background: yellow;
            border: 3px solid;
        }

        .right {
            float: left;
            width: 200px;
            height: 600px;
            margin-left: -200px;
            background: skyblue;
        }

    </style>
</head>
<body>
    <div class="box">
        <div class="center">
            <!-- 双飞翼特点,中间元素添加多一个div,并margin 0 200px -->
            <div class="content">center</div>
        </div>
        <div class="left">left</div>
        <div class="right">right</div>
    </div>
</body>
</html>

技术图片

双飞翼布局

标签:图片   alt   load   ack   idt   一个   back   com   center   

原文地址:https://www.cnblogs.com/L-xjco/p/14779440.html

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