day06

作者: 小小全_ | 来源:发表于2018-07-16 20:38 被阅读0次

    一.CSS中的定位

    1.1相对定位(relative)

    相对定位就是元素在页面上正常的位置

    <style>
            /* 相对定位就是元素在页面上正常的位置 */
            div{
                width:100px;
                height:100px;
                background: red;
                position: relative;
                left:200px;
                top:200px;
                /* 相对定位一般不使用right,bottom */
                /* right:0px; */
                /* bottom:10px; */
    
            }
        </style>
    

    1.2绝对定位

    绝对定位的元素移动的位置,是离它最近的给了定位的父元素

    <style>
            .parent{
                width:200px;
                height:200px;
                background-color:red;
                position: relative;
            }
            /* 绝对定位的元素移动的位置,是离它最近的给了定位的父元素 */
            /* left,right,top,bottom */
            .child{
                width:50px;height:50px;background:green;
                position:absolute;
                right:0;
                bottom:0;
            }
        </style>
    
           <div class="parent">
               <div class="child">
            </div>
          </div>
    

    二.元素垂直水平居中

    子元素left,top的值给百分比是相对于父元素的width,height而言的
    步骤:①先设置父元素为相对定位
    ②设置子元素为绝对定位

    <style>
            *{margin:0;padding:0}
            .parent{
                position: relative;
                width:300px;
                height:300px;
                background:red;
            }
            .child{
                position:absolute;
                width:50px;
                height:50px;
                background:green;
                left:50%;
                top:50%;
                margin-left:-25px;
                margin-top: -25px;
            }
        </style>
    
    <body>
        <div class="parent">
            <div class="child">
    
            </div>
        </div>
    </body>
    

    三.用position实现搜索框

    步骤:①先设置父元素search为相对定位,设置宽高
    ②设置子元素button为绝对定位,设置宽高,根据高来设置margin-top,使其高度居中

    <style>
            *{margin:0;padding:0}
            .search{
                margin:100px;width:240px;
                height:40px;position: relative;
            }
            button{
                position:absolute;top:50%;margin-top: -11px;
    
                right:5px;width:23px;height:22px;
                background: url("images/icon4.png");border:none;
            }
            input{
                padding-left:20px;border:none;
                border-radius: 30px;outline: none;
                width:220px;height:40px;background:#eee;
            }
        </style>
    
    <body>
        <div class="search">
            <input type="text" placeholder="搜索">
            <button></button>
        </div>
    </body>
    

    四.固定定位

    元素相对于网页静止,滚动不改变位置

    <style>
            div{
                width:20px;
                height:50px;
                background:red;
                position:fixed;
                right:10px;
                bottom:130px;
            }
        </style>
    

    五.z-index

    z-index设置给了absolute定位元素的堆叠顺序,设置值不小于100,值越大,就堆叠在最前面

    <style>
            /* z-index设置给了absolute定位元素的堆叠顺序 */
            .parent{
                width:300px;height:300px;background: red;
                position: relative;
            }
            .one{
                width:100px;
                height:100px;
                background:green;
                position:absolute;
                z-index:100;
            }
            .two{
                width:200px;
                height:50px;position:absolute;
                background:blue;
                z-index: 101;
            }
            .parent:hover .one{
                z-index: 200;
            }
    
    <body>
        <!-- z-index -->
        <div class="parent">
            <div class="one"></div>
            <div class="two"></div>
        </div>
    </body>
    
    

    相关文章

      网友评论

          本文标题:day06

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