Get input type=text to look like type=password

后端 未结 7 1845
南笙
南笙 2020-11-29 07:10

tl;dr

I have an input with type=text which I want to show stars like an input with type=password using only CSS.


Basically I

相关标签:
7条回答
  • 2020-11-29 08:05

    If you want to prevent copy paste functionality then you can use:

    -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: moz-none; -ms-user-select: none; user-select: none;

    which will not let others select the text and so they will not be able to copy.

    0 讨论(0)
提交回复
热议问题