el-form-item中label文字超长
时间: 2023-12-14 11:23:12 浏览: 122
如果el-form-item中的label文字超长,可以通过设置css样式来解决。首先,在template中设置label时,可以使用"\n"来表示换行。比如:
```html
<el-form-item :label="'税收居民国(地区)2\n(如有请填写):'" class="foldLabel">
<el-input type="text"></el-input>
</el-form-item>
```
接下来,在css中设置样式,使label能够自动换行并与input等高。可以使用以下样式:
```css
<style scoped>
.el-form-item.foldLabel .el-form-item__label {
white-space: pre-line; /* 换行显示 */
height: 32px; /* 设置lable高度,与input高度一样 */
line-height: 16px!important; /* 设置行高为label高度的一半(有n行就是label高度的1/n) */
}
</style>
```
另外,如果需要对其他label进行样式设置,可以使用以下样式:
```css
/* 过于长的label分两行展示样式 */
.fold_label .el-form-item__label {
white-space: pre-line;
text-align-last: justify;
text-align: justify;
margin-top: -4px;
line-height: 25px;
text-justify: distribute-all-lines;
}
/* 其他label根据宽度自动撑开 */
.el-form-item__label {
text-align-last: justify;
text-align: justify;
text-justify: distribute-all-lines;
}
```
通过以上设置,可以使el-form-item中的label文字超长时自动换行,并与input等高。
阅读全文