美文网首页
css布局右边自适应

css布局右边自适应

作者: 无花无酒_3cd3 | 来源:发表于2020-12-06 14:44 被阅读0次

    <html>
    <head>

      <meta charset="UTF-8">
      <title>Document</title>
      <style>
        *{
          margin: 0;
          padding: 0;
        }
        .div1{
          background-color: red;
          float:left;
        }
        .div2{
          background-color: green;
          height:auto;
        }
      </style>  
    </head>
    <body>
      <div class="box">
          <div class="div1">111 </div>
          <div class="div2">222</div>
      </div>
      <script>  
      
      </script>
    </body>
    </html> 
    

    相关文章

      网友评论

          本文标题:css布局右边自适应

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