当前位置:   article > 正文

css 布局 头部底部绝对定位不动 让内容超出滚动

css 固定定位把按钮固定到最底下 向下滚动,内容超出是什么原因
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Document</title>
  8. <style lang="">
  9. html,
  10. body {
  11. height: 100%;
  12. margin: 0px;
  13. padding: 0px;
  14. overflow: auto;
  15. }
  16. header {
  17. height: 100px;
  18. width: 100%;
  19. background-color: red;
  20. position: absolute;
  21. }
  22. main {
  23. width: 100%;
  24. background-color:skyblue;
  25. padding: 100px 0;
  26. height: 1000px;
  27. }
  28. footer {
  29. height: 100px;
  30. width: 100%;
  31. background-color: blue;
  32. position: absolute;
  33. bottom: 0;
  34. }
  35. </style>
  36. </head>
  37. <body>
  38. <header>头部</header>
  39. <main>
  40. 内容区域
  41. </main>
  42. <footer>底部</footer>
  43. </body>
  44. </html>
  45. 复制代码

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/74581?site
推荐阅读
相关标签
  

闽ICP备14008679号