我这边运行dev-8.2的代码,是正常的
element样式还是蛮好的,只是有时候我们需要做一些调整,比如,el-input 的边框,官网是这样子的 我们需要去掉这个边框 试了常用的:border: none; 以及:outline:none; 但却没用 tip:将border属性设成0,虽然边框不见了,但是浏览器依然会对border-width和border-color进行渲染,会占用浏览器的资源。将border设置成none,...
<el-input v-model="form.stem" readonly style="border: none" /> 刷新,没变化(边框依然在)。F12查看样式,看起来这个样式无法覆盖原有样式。 原因: 查了查资料,原因是当前vue文件中使用style scoped包裹的样式中重置input框的样式无法生效。 解决: 方式一: 找到el的css文件在input的Border样式后面加上!import...
遇到一个需求,需要把el-input的边框隐藏掉,自己沿着dom结构一层层找了好几层,将input的border设置为none,还加了 !important提权,也没有去掉,在网上搜到了网友的做法,简单易懂,来记录一下,方便自己以后查找: 结构://直接在el-input上面加一个类名 <el-input class="paperview-input-text" v-model="item.con...
https://yhsyc.club/2022/08/22/remove-element-ui-input-border/ 有时候我们得到的需求是不需要这个 的边框的,但是我们又不能直接通过 border: none; or border: 0; 直接把边框干掉 tip:将border属性设成0,虽然边框不见了,但是浏览器依然会对border-width和border-color进行渲染,会占用浏览器的资源。将...
resize="none" :rows="4" ></el-input> <div class="item__txt">{{scope.row.OPER_CONTENT}}</div> </div> 把这个type="textarea" 去掉之后, 问题就解决了。 不对呀,我需要的可是高度为四行的内容! 那就使用原生的textarea。 <div class="item" slot-scope="scope"> ...
<div class="bg-right"> <img src="./components/img/icon-zylogic.svg" class="bg-icon"> <span class="bg-text">自愈启动逻辑:</span> <div class="btn-select"> <el-select v-model="startLogic" style="border:none"> <el-option v-for="option in zyLogic" :key="option.value" :label...
<el-table ref="multipleTable" border stripe :data="tableData" tooltip-effect="dark" @selection-change="selsChange" style="width: 100%;margin-top: 30px"> <el-table-column type="selection" width="70" @selection-change="selsChange"></el-table-column> ...
/deep/ .el-table--border, .el-table--group { /* border: .0052rem solid #0076c8; */ border: none; } /deep/ .el-input--mini .el-input__icon { line-height: 0.2448rem; } /* 右边的白线 */ /deep/ .el-table--border::after { ...
border: none; color: #06608a; text-transform: none; option{line-height: 20px;height: 20px;} } } .datetime{display: inline-block;line-height: normal; ::v-deep .el-date-editor.el-input, .el-date-editor.el-input__inner { margin-top: 2px; ...