核心提示:VUE样式CSS(代码)style scoped .brand-box .el-select__tags-text {width: 155px;display: inline-block;overfl...
VUE样式CSS(代码)
<style scoped>
>>> .brand-box .el-select__tags-text {
width: 155px;
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: middle;
}
</style>
scoped 表示此样式代码作用域是此文件。
>>> 表示可以选中类:.el-select__tags-text
否则是选不中的。


