美文网首页
浮动原理

浮动原理

作者: Dxes | 来源:发表于2019-12-06 20:59 被阅读0次
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title></title>
        </head>
        <body>
            <!--注意:块级标签浮动的时候如果前面的标签浮动,后边的标签不浮动,前面标签会覆盖后面的标签-->
            <!--====================浮动示例1=====================-->
            <!--<div id="" style="background-color: greenyellow; width: 100px; height: 100px; float: left;">div1</div>
            <div id="" style="background-color: hotpink; width: 100px; height: 150px;">div2</div>
            -->
            <!--====================浮动示例2=====================-->
            <!--<div id="" style="background-color: greenyellow; width: 100px; height: 100px; float: right;">div1</div>
            <div id="" style="background-color: hotpink; width: 100px; height: 150px;">div2</div>-->
            
            <!--====================浮动示例3=====================-->
            <!--<div id="" style="background-color: greenyellow; width: 100px; height: 100px;">div1</div>
            <div id="" style="background-color: hotpink; width: 100px; height: 150px; float: left;">div2</div>-->
            
            <!--====================浮动示例4=====================-->
            <div id="" style="background-color: greenyellow; width: 100px; height: 100px; float: left;">div1</div>
            <div id="" style="background-color: hotpink; width: 100px; height: 150px; float: left;">div2</div>
            <div id="" style="background-color: orangered; width: 100px; height: 200px;"></div>
            
            
            
        </body>
    </html>
    
    

    相关文章

      网友评论

          本文标题:浮动原理

          本文链接:https://www.haomeiwen.com/subject/osxygctx.html