美文网首页
元素的层级和背景

元素的层级和背景

作者: 姓高名旭升 | 来源:发表于2018-11-24 12:40 被阅读0次
z-index
   .box1{
        width: 200px;
        height: 200px;
        background-color: #0bcd96;
        position:relative;
        z-index:3;
    }
    .box2{
        width: 200px;
        height: 200px;
        background-color: #1e389a;
        position: absolute;
        left: 100px;
        top: 100px;
    }
    .box3{
        width: 200px;
        height: 200px;
        background-color: #6a1752;
        position: relative;
        z-index:2;
    }

  • 如果没有开启定位的元素或者是定位为默认值,会忽略z-index的声明
  • 父元素的层级再怎么高也不会盖住子元素,可以理解为(水涨船高)

opacity(透明)
 .box1{
        width: 200px;
        height: 200px;
        background-color: #0bcd96;
        position:relative;
        opacity: 50%;
        filter: alpha(opacity=50);
    }
    .box2{
        width: 200px;
        height: 200px;
        background-color: #1e389a;
        position: absolute;
        left: 100px;
        top: 100px;
        opacity:0.5px;
        filter: alpha(opacity=50);
    }
    .box3{
        width: 200px;
        height: 200px;
        background-color: #6a1752;
        position: relative;
        opacity: 50%;
        filter: alpha(opacity=50);
    }

  • opacity只能设置0-1之间的数值
  • filter: alpha(opacity=50)兼容IE浏览器

背景(background-image)

.box1{
        width: 500px;
        height: 500px;
        margin:0 auto;
        background-color: #0bcd96;
        background-image: url(../css/logo_new@2x.png);
        background-repeat:no-repeat;
    }

  • background-repeat:no-repeat 图片只显示一次
  • background-repeat:repeat-x 背景将在水平方向重复
  • background-repeat:repeat-y 背景将在垂直方向重复

相关文章

  • 元素层级和背景

    元素的层级 z-index 设立层级 没有开启,是不能使用z-index 子元素层级再高也永远盖不住父元素 元素的...

  • 元素的层级和背景

    z-index 如果没有开启定位的元素或者是定位为默认值,会忽略z0index的声明 父元素的层级在怎么高也不会盖...

  • 元素的层级和背景

    z-index 如果没有开启定位的元素或者是定位为默认值,会忽略z-index的声明 父元素的层级再怎么高也不会盖...

  • 元素的层级和背景

    z-index 如果没有开启定位的元素或者是定位为默认值,会忽略z-index的声明 父元素的层级再怎么高也不会盖...

  • 元素的层级和背景

    z-index 如果没有开启定位的元素或者是定位为默认值,会忽略z-index的声明 父元素的层级再怎么高也不会盖...

  • 前端,元素的层级和背景

    z-index 如果没有开启定位的元素或者是定位为默认值,会忽略z-index的声明父元素的层级再怎么高也不会盖住...

  • 元素层级 背景 表格

    元素的层级 z-index 父元素层级在高,也不会盖住它的子元素 对于没有开启定位的元素不能使用z-index 如...

  • 元素层级、背景、表格

    元素层级 想要设置元素层级必须要开启定位(上一章有定位的描述) 后面的数字是设置层级的数字越大层级越高,但是父类的...

  • 前端 元素的层级 背景

    background-colorbackground-color属性用来为元素设置背 景颜色。需要指定一个颜色值,...

  • 前端 元素的层级 背景

    元素的层级 内容已在代码 背景 background-repeat 设置背景重复background-posit...

网友评论

      本文标题:元素的层级和背景

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