Blame view

css/libCss/common.css 443 Bytes
35ad5bba   liuqimichale   init
1
2
3
4
  body{
      position: relative;
  }
  body,html{
90f9c3a1   liuqimichale   首页
5
      overflow: hidden;
35ad5bba   liuqimichale   init
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
      width: 100%;
      height: 100%;
  }
  header{
      height: 100px;
      width: 100%;
      background-color: #f00;
  }
  nav{
      position: absolute;
      width: 100px;
      height: 100%;
      background-color: #000;
      left: 0;
      top:0;
      padding-top: 100px;
  }
  section{
      width: 100%;
      height: 100%;
      padding-left: 100px;
90f9c3a1   liuqimichale   首页
27
28
      /* padding-top: 100px; */
      margin-top: -100px;
35ad5bba   liuqimichale   init
29
  }