zoukankan      html  css  js  c++  java
  • 固定定位

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8" />
    <title></title>
    <style type="text/css">
    .box1{
    200px;
    height: 200px;
    background-color: red;
    }
    .box2{
    200px;
    height: 200px;
    background-color: blue;
    /*
    * 当元素的position属性设置fixed时,则开启元素的固定定位
    * 固定定位也是一种绝对定位,它大部分都和绝对定位一样
    * 不同的特点:
    * 固定定位永远都会相对于浏览器窗口进行定位
    * 固定定位会被固定在浏览器窗口的某一位置,不会随滚动条滚动
    * IE6不支持固定定位
    */
    position: fixed;
    left: 0px;
    top: 0px;
    }
    .box3{
    200px;
    height: 200px;
    background-color: aqua;
    }
    .box4{
    400px;
    height: 400px;
    background-color: orange;
    }
    </style >
    </head>
    <body style = "height:5000px">
    <div class="box1"></div>
    <div class="box4"></div>
    <div class="box2"></div>
    <div class="box3"></div>
    </body>
    </html>

  • 相关阅读:
    导航控制器的出栈
    UIPickView的基本使用
    多控制器
    通过Xib加载控制器的View
    从StoryBoard加载控制器
    模仿UIApplication单例
    LaunchScreen原理
    UIWindow
    指定初始化的运用
    零长度数组在内核中的运用
  • 原文地址:https://www.cnblogs.com/weixin2623670713/p/12666313.html
Copyright © 2011-2022 走看看