美文网首页
HTML----元素层级

HTML----元素层级

作者: 梵高先生uu | 来源:发表于2018-08-14 08:18 被阅读0次

元素的层级
内容已在代码

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>元素的层级</title>
   <style type="text/css">
       .box1{
           width: 200px;
           height: 200px;
           background-color: pink;
       }
       .box2{
           width: 200px;
           height: 200px;
           background-color: red;
           position: absolute;
           top: 100px;
           left: 100px;
           z-index: 1
       }
            /*z-index 设置z轴的层级*/
       .box3{
           width: 200px;
           height: 200px;
           background-color: blue;
           position: relative;
       }
           /*父元素的层级在高 也不会盖着子元素*/
           /*opacity 设置元素的背景透明   0-1  0.5半透明*/
           /*ie8 级 以下不能设置透明  设置的话用 filter:alpha(opacity=50)  ie 专有的 最好两个都写上*/
   </style>
</head>
<body>
   <div class="box1"></div>
   <div class="box2"></div>
   <div class="box3"></div>
</body>
</html>

背景
background-repeat 设置背景重复
background-position 设置图片的位置:
top lefttop center top right center left center center center right
background-attachment 设置图片 fixed 固定

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>背景</title>
    <style type="text/css">
        .box1{
            width: 1000px;
            height:1000px;
            margin: 0 auto;
            background-color: pink;
            background-image:url(img/1.jpg);
            background-repeat: repeat-y;
        }
        /*background-repeat  设置背景重复*/
        /*background-position 设置图片的位置,top left
        top center top right center left center center center right */
        /*background-attachment 设置图片 fixed 固定*/
    </style>
</head>
<body>
    <div class="box1"></div>
</body>
</html>
/--简写背景属性  background:#bfa url(img/1.png) no-repeat fixed center;--/

相关文章

  • HTML----元素层级

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

  • 元素层级

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

  • 元素层级和背景

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

  • 元素的层级,背景的设置

    元素的层级z-index: z-index(正整数) 数值越大,层级越高(元素的层级必须开启...

  • 知识点 2018-07-11表格样式

    元素的层级; 设置元素的层级:z-index:值(数字);必须先开定位才能使用。 父元素的层级设置的再高也不会覆盖...

  • 背景设置与表格

    1z-index 开启定位以后。z-index:1;数越大层级越高。 层级z轴。父元素层级比子元素高,但是父元素也...

  • 背景设置与表格

    1z-index 开启定位以后。z-index:1;数越大层级越高。 层级z轴。父元素层级比子元素高,但是父元素也...

  • 2019-05-31(前端第六节知识点)表格、元素的层级、背景

    元素的层级: 如果定位元素的层级是一样,则下边的元素会盖住上边的 通过z-index属性可以用来设置元素的层级 可...

  • 2019-05-31元素的层级,背景,电驴导航条,背景偏移与定位

    元素得层级 如果定位元素的层级是一样,则下边的元素会盖住上边的 通过z-index属性可以用来设置元素的层级 可以...

  • 前端(雪碧图)

    1、元素的层级: 如果定位元素的层级是一样,则下边的元素会盖住上边的通过z-index属性可以用来设置元素的层级可...

网友评论

      本文标题:HTML----元素层级

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