布局

两栏布局

<!-- log -->
<style>
  .two-side {
    height: 300px;
    position: relative;
  }

  .two-side .left {
    position: absolute;
    top: 0;
    height: 300px;
    width: 100px;
    background-color: red;
  }

  .two-side .right {
    margin-left: 100px;
    opacity: 0.5;
    height: 100%;
    max-width: 750;
    background-color: green;
  }
</style>
<div class="two-side">
  <div class="left"></div>
  <div class="right"></div>
</div>

注意:位置可颠倒。

逆向双飞翼

<!-- log -->
<section id="fly">
  <div class="wrapper">
    <div class="content"></div>
  </div>
</section>
<style>
  #fly .wrapper {
    height: 30px;
    background-color: grey;
  }
  #fly .content {
    width: 500px;
    height: 30px;
    background-color: red;
    margin: 0 auto;
  }
</style>
posted @ 2020-08-31 13:56  oceans-pro  阅读(130)  评论(0编辑  收藏  举报