Loading... 问题:引用官网例子,布局只占一半,定义固定像素高度又不好适用不同屏幕大小效果。 **解决方案**: 1.在app.vue中加以下样式 ``` <style> #app { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } </style> ``` 2.在布局组件中的 `.el-aside`样式下加上 line-height: 100vh; vh是相对于屏幕的可见高度,视口被均分为100单位的vh ``` .el-aside { background-color: #D3DCE6; color: #333; text-align: center; line-height: 100vh; } ``` Last modification:September 2, 2023 © Allow specification reprint Support Appreciate the author AliPayWeChat Like 如果觉得我的文章对你有用,请随意赞赏
One comment
添加完元素就变了