I have an input with type=text
which I want to show stars like an input with type=password
using only CSS.
Basically I
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.