美文网首页
圣杯布局

圣杯布局

作者: 惟允 | 来源:发表于2018-05-29 10:43 被阅读0次
    圣杯布局
    <div class="wrap clear">
      <div class="main"></div>
      <div class="left"></div>
      <div class="right"></div>
    </div>
    
    .wrap {
      padding-left: 120px;
      padding-right: 120px;
      min-width: 400px;
      background: #000;
    }
    
    .clear::after {
      content: '';
      display: block;
      clear: both;
    }
    
    .main {
      width: 100%;
      height: 400px;
      float: left;
      background: #00c3ff;
    }
    
    .left {
      float: left;
      width:120px;
      height: 400px;
      background: #00ffc3;
      margin-left: -100%;
      position: relative;
      left: -120px;
    }
    
    .right {
      float: left;
      width: 120px;
      height: 400px;
      background: #c3ff00;
      margin-left: -120px;
      position: relative;
      left: 120px;
    }
    

    点此预览

    相关文章

      网友评论

          本文标题:圣杯布局

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