您的当前位置:首页正文

element-ui height:100%不生效解决方案

2024-11-06 来源:个人技术集锦

当想要元素铺满整个屏幕的时候,采用或者固定定位

  .el-menu {
    position: fixed;
    height: 100%;
    border: none;
    h3 {
      color: #fff;
      text-align: center;
      line-height: 48px;
    }
  }

Top