xjyj

  Div固定在网页顶部

.header {
    width:100%;
    height:80px;
    background-color:#FAFAFA;
    position:fixed; 
    top:0;
    left:0;
    z-index:99;
}

 

  Div固定在网页底部

.footer {
    width:100%;
    height:50px;
    line-height:50px;
    background-color:#3394c7;
    position:fixed;
    bottom:0px;
    left:0px;
}

 

  Div固定在网页左侧

.leftNav {
    height:auto;
    background-color:#333;
    position:fixed;
    z-index:2;
    left:0px;
    top:80px;
    bottom:50px;
}

 

  Div固定在网页右侧

.rightNav {
    height:auto;
    background-color:#333;
    position:fixed;
    z-index:2;
    rigth:0px;
    top:80px;
    bottom:50px;
}

 

先这样。以后遇到再说吧。

 

分类:

技术点:

相关文章:

  • 2021-10-02
  • 2021-10-07
  • 2021-10-02
  • 2021-10-17
  • 2021-09-27
  • 2021-11-02
  • 2017-11-27
  • 2021-06-23
猜你喜欢
  • 2021-12-19
  • 2021-10-07
  • 2021-10-07
  • 2021-11-02
  • 2021-11-19
  • 2021-11-02
相关资源
相似解决方案