去除elementui中的el-input组件的默认样式

.input{
  width: 224px;
  height: 40px;
  line-height: 40px;
  background: #F3F6FB;
  border-radius: 4px;
  padding:0  12px;
  margin-right: 20px;
}
.input ::v-deep .el-input__inner {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  background: #F3F6FB;
}

大概就这个样子了

你可能感兴趣的:(elementui,css)