Element UI 滚动条组件scrollbar设置 max-height 的使用

el-scrollbar 之设置 max-height 显示滚动条

很多博主写了父级固定高度的使用,这里写下 max-height 如何设置


<el-scrollbar>el-scrollbar>
// 如果在scope里需要加 /deep/
/deep/ .el-scrollbar {
	.el-scrollbar__wrap {
		max-height: 300px; // 最大高度
		overflow-x: hidden; // 隐藏横向滚动栏
	}
}

你可能感兴趣的:(Element,UI,前端,html,css,vue.js)