美文网首页
去除原生input的自带边框样式

去除原生input的自带边框样式

作者: 等级7 | 来源:发表于2022-11-10 17:53 被阅读0次
    <style scoped>
      input {
        outline-color: invert;
        outline-style: none;
        outline-width: 0px;
        border: none;
        border-style: none;
        text-shadow: none;
        -webkit-appearance: none;
        -webkit-user-select: text;
        outline-color: transparent;
        box-shadow: none;
      }
    </style>
    

    相关文章

      网友评论

          本文标题:去除原生input的自带边框样式

          本文链接:https://www.haomeiwen.com/subject/pldatdtx.html