Blogger Information
Blog 10
fans 0
comment 0
visits 5221
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
20190708作业
狗子的博客
Original
527 people have browsed it

双飞翼实现流程.jpg





实例

.container {
    width: 1000px;

    margin: 5px auto;

    background-color: lightgray;

    overflow: hidden;
}

.wrap {

    width: inherit;

    min-height: 800px;

    background-color: cyan;
}


.left {
    width: 200px;
    min-height: 800px;
    background-color: lightcoral;
}

.right {
    width: 200px;
    min-height: 800px;
    background-color: lightseagreen
}


.wrap, .left, .right {
    float: left;
}

.left {

    margin-left: -100%;
}
.right {

    margin-left: -200px;
}

.main {
    padding-left: 200px;
    padding-right: 200px;
    /*padding: 0 200px;*/
}

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:qualified

Teacher's comments:双飞翼的本质就是: float + margin , 就这么简单, 记住这点, 就不会忘了
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post