• 制作遮罩层的样式


    遮罩层的样式

    <div class="content">
      11111
      <div class="mark"></div>
    </div>
    
    .content {
       100px;
      height: 100px;
      background: #fff;
      border: 1px solid red;
      position: relative;
    }
    .mark {
       100%;
      height: 100%;
      position: absolute;
      background: rgba(0, 0, 0, 0.2);
      top: 0;
      left: 0;
      z-index: 100;
      cursor: pointer;
      transition: all 0.15s;
    }
    .mark:hover {
      background: rgba(0, 0, 0, 0.6);
    }
    
  • 相关阅读:
    登录认证
    json
    关于优化
    网站资源
    设计模式
    Python
    查兰IP
    Linux命令
    centos7.0KVM虚拟化
    Shell数组
  • 原文地址:https://www.cnblogs.com/my466879168/p/13151118.html
Copyright © 2020-2023  润新知