Answers for "how to disable textbox in css"

CSS
0

css disable input

<input type="text" name="username" value="admin" >
<style type="text/css">
  input[name=username] {
    disabled: true; /* Does not work */
  }
</style>
Posted by: Guest on January-18-2021
0

freeze input text css

pointer-events: none;
Posted by: Guest on December-06-2020

Code answers related to "how to disable textbox in css"

Browse Popular Code Answers by Language