HTML代码

<body>

    <div class="right"></div>

    <div class="left"></div>

</body>

CSS代码

*{

    margin:0;

    padding:0;

}

.right{

    position:absolute;

    right:0;

    width:100px;

    height:100px;

    background-color:#fcc;

    opacity:0.5;                          //透明度

}

.left{

    margin-right:100px;

    height:100px;

    background-color:#123;

}

相关文章:

  • 2022-03-09
  • 2022-02-02
  • 2022-02-25
  • 2021-12-18
  • 2022-02-15
  • 2022-02-07
  • 2021-08-28
  • 2022-01-08
猜你喜欢
  • 2022-01-27
  • 2022-12-23
  • 2021-11-30
  • 2021-06-23
  • 2021-06-10
  • 2021-12-18
  • 2022-12-23
相关资源
相似解决方案