<el-input class="custom-input" disabled style="width: 120px;margin-right: 20px;color: red!important;" v-model="'已花费'+ temp.dispatchPoint_1 + '点'"></el-input>字体红色无效果
时间: 2024-03-13 10:42:27 浏览: 98
bootstrap-input-spinner:一个Bootstrap 4 jQuery插件,用于为数字输入创建输入Spinner元素
如果仍然没有效果,那么可能是由于浏览器的安全策略导致样式无法生效,你可以尝试在CSS文件中设置样式,或者在页面中使用<style>标签来设置样式。例如:
```
<style>
.custom-input input {
color: red !important;
}
</style>
<el-input class="custom-input" disabled style="width: 120px;margin-right: 20px" v-model="'已花费'+ temp.dispatchPoint_1 + '点'"></el-input>
```
这样应该可以将字体颜色设置为红色。
阅读全文