div 两列式布局

<html>
    <head> 
      <style>
       #div1{
      background-color:green;
      height:200px;

     float:left;

      200px;

    }
    #div2{
      background-color:silver;
      height:200px;
          }
     </style>
    </head>
  <body>
    <div id="div1">div1</div>
    <div id="div2">div2</div>
     </body>
</html>

原文地址:https://www.cnblogs.com/wenyi1993/p/4450232.html