Blame view

css/libCss/common.css 367 Bytes
35ad5bba   liuqimichale   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  body{
      position: relative;
  }
  body,html{
      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;
  }