header
当前位置:   article > 正文

elementui_el-header 高度

el-header 高度

elementui 中   container容器布局的子元素高度是通过标签来改变的  不能通过class来来改变

  1. <template>
  2. <div class="containerBox">
  3. <el-container class="container2">
  4. <el-header class="header1" height="120px">header</el-header>
  5. <el-container class="container1">
  6. <el-aside class="aside1">aside</el-aside>
  7. <el-main class="main1">main</el-main></el-container
  8. >
  9. </el-container>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {};
  16. },
  17. methods: {
  18. quit() {
  19. window.sessionStorage.clear("token");
  20. },
  21. },
  22. };
  23. </script>
  24. <style scoped lang='less'>
  25. // .containerBox {
  26. // .container2 {
  27. // height: 100%;
  28. // widows: 100%;
  29. // .header1 {
  30. // height: 80px;
  31. // width: 100%;
  32. // background-color: #070;
  33. // }
  34. // .container1 {
  35. // height: calc(100% - 80px);
  36. // width: 100%;
  37. // background-color: lightblue;
  38. // .aside1 {
  39. // height: 100%;
  40. // width: 20%;
  41. // background-color: blue;
  42. // }
  43. // .main1 {
  44. // height: 100%;
  45. // width: 80%;
  46. // background-color: pink;
  47. // }
  48. // }
  49. // }
  50. // }
  51. </style>

 上列代码中 涉及到height的属性均不生效

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