当前位置:   article > 正文

element-ui 修改el-form-item样式

element-ui 修改el-form-item样式

文章目录

  • form结构
  • 修改el-form-item所有样式
  • 只修改label
  • 只修改content
  • 只修改input
  • 只修改button

form结构

  1. <el-form :model="formData" label-width="80px">
  2. <el-form-item label="label1">
  3. <el-input v-model="formData.value1"></el-input>
  4. </el-form-item>
  5. <el-form-item>
  6. <el-button type="primary" @click="onSubmit">提交</el-button>
  7. <el-button>取消</el-button>
  8. </el-form-item>
  9. </el-form>

修改el-form-item所有样式

  1. <style lang="less" scoped>
  2. .el-form {
  3. .el-form-item {
  4. /deep/ * {
  5. font-size: 18px;
  6. color: blue;
  7. }
  8. }
  9. }
  10. </style>

element-ui 修改el-form-item样式

只修改label

  1. <style lang="less" scoped>
  2. .el-form {
  3. .el-form-item {
  4. /deep/ .el-form-item__label {
  5. font-size: 18px;
  6. color: blue;
  7. }
  8. }
  9. }
  10. </style>

element-ui 修改el-form-item样式

只修改content

  1. <style lang="less" scoped>
  2. .el-form {
  3. .el-form-item {
  4. /deep/ .el-form-item__content {
  5. * {
  6. font-size: 18px;
  7. color: blue;
  8. }
  9. }
  10. }
  11. }
  12. </style>

element-ui 修改el-form-item样式

只修改input

  1. <style lang="less" scoped>
  2. .el-form {
  3. .el-form-item {
  4. /deep/ .el-form-item__content {
  5. input {
  6. font-size: 18px;
  7. color: blue;
  8. }
  9. }
  10. }
  11. }
  12. </style>

element-ui 修改el-form-item样式

只修改button

  1. <style lang="less" scoped>
  2. .el-form {
  3. .el-form-item {
  4. /deep/ .el-form-item__content {
  5. button {
  6. font-size: 18px;
  7. color: blue;
  8. }
  9. }
  10. }
  11. }
  12. </style>

element-ui 修改el-form-item样式

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/329325
推荐阅读
相关标签
  

闽ICP备14008679号