问题描述
在用element-ui
的el-checkbox
组件时,发现如果标签文本过长的话并不会折行,而是继续撑大容器
解决方法
width: 100%;
white-space: pre-line;
word-wrap: break-word;
overflow: hidden;
line-height: 20px;
height: 40px;
在用element-ui
的el-checkbox
组件时,发现如果标签文本过长的话并不会折行,而是继续撑大容器
width: 100%;
white-space: pre-line;
word-wrap: break-word;
overflow: hidden;
line-height: 20px;
height: 40px;