zoukankan      html  css  js  c++  java
  • 02-CSS基础与进阶-day9_2018-09-12-21-37-34

    z-index
    当对多个元素设置定位时,重叠的定位元素可以通过z-index调整堆叠顺序 其值可以为0 正数 负数
    特点 1 z-index默认值为0 取值越大 定位元素在层叠元素上越局上
    2 z-index取值一样,后来居上
    3 z-index值不能加单位
    4 只有定位元素才有该属性,其余如浮动等都无此属性
    元素的显示和隐藏
    display: none; /* 隐藏元素 不是删除 只不过看不见 不保留位置*/
    visibility: hidden;/*隐藏元素 它保留位置*/

    06显示和隐藏二维码.html

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
        <style type="text/css">
           div.content {
                  width: 100px;
                  height: 100px;
                  text-align: center;
                  line-height: 100px;
                  background-color: rgba(0,0,0,0.4);
           }
    
           .wrap {
                  position: relative;
           }
    
           .wrap .erweima {
                  position: absolute;
                  left: 100px;
                  top: 0;
                  display: none;
           }
    
           .wrap:hover .erweima {
                 display: block;
           }
    
        </style>
    </head>
    <body>
        <div class="wrap">    
            <div class="content">扫二维码</div>
            <div class="erweima">
                <img src="img/jd.png" alt="">
            </div>
        </div>
    </body>
    </html>
  • 相关阅读:
    路飞项目五
    路飞项目四
    路飞项目三
    路飞项目二
    基本数据类型之集合和字符编码
    3.11 作业
    基本数据类型内置方法
    3.10 作业
    流程控制之for循环、基本数据类型及其内置方法
    3.9 作业
  • 原文地址:https://www.cnblogs.com/HiJackykun/p/11072068.html
Copyright © 2011-2022 走看看