vue使用Ant design的input输入框,去掉边框和获取焦点时的边框

/* 取消 多行文本框 伸缩效果 resize: none; */
/* 取消 多行文本框 边框 border: none; */
  textarea.ant-input{
    resize: none; 
    border: none; 
  }
  /* 取消 多行文本框 获取焦点的 边框 效果 */ 
  textarea.ant-input:focus {
    border: none;
    box-shadow: none;
  }

普通文本框的话 去掉textarea 设置就好了

Logo

前往低代码交流专区

更多推荐