Answers for "remove selection box html css on input"

CSS
2

css disable dropdown on input

<input type="text" autocomplete="off">
Posted by: Guest on August-03-2021
0

how to remove text selection in css

/*Copy below for all browsers */
* {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}
Posted by: Guest on March-05-2021

Browse Popular Code Answers by Language