Element Container布局容器百分之百显示

1.首先,在public--index.html中,设置html,body,#app

    html,
    body,
    #app {
      height: 100%;
      margin: 0px;
      padding: 0px;
    }

2. 进入容器组件

Element Container布局容器百分之百显示_第1张图片

Element Container布局容器百分之百显示_第2张图片 

.app-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main_container {
  height: 100%;
}

 

 

你可能感兴趣的:(html,vue.js,elementui)