当前位置:首页 » 《随便一记》 » 正文

设置<el-input type=“textarea“/>高度

16 人参与  2023年05月04日 13:53  分类 : 《随便一记》  评论

点击全文阅读


一、设置<el-input  type="textarea"/>高度

.el-textarea{
    height:88px;
    :deep(.el-textarea__inner){
        height: 88px;
    }
}

二、设置el-input高度

:deep(.el-input__wrapper){
    font-size: 14px;
    width:100%;
    height:32px;
}

三、修改el-form前面红色星号的颜色

:deep(.el-form-item.is-required:not(.is-no-asterisk).asterisk-left>.el-form-item__label:before) {
    content: "*";
    color: var(--el-color-primary);
    margin-right: 4px;
}

四、设置el-form在最右侧

<el-form-item style="float:right;margin-right:0px"></el-form-item>


点击全文阅读


本文链接:http://zhangshiyu.com/post/60669.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1