溢出、文档流和浮动

2018-11-29  本文已影响0人  回忆在美也是曾经

overflow(溢出)

.box{
    width:100px;
    height:100px;
    background-color:red;
    overflow:visible;
}

2.文档流


3.浮动

.box2{
        width: 100px;
        height: 100px;
        background-color: red;
        /*display: inline-block;*/
        float: left;
    }

内联浮动

上一篇下一篇

猜你喜欢

热点阅读