Answers for "w3.css disabled input"

CSS
2

input disabled remove css

pointer-events:none;
Posted by: Guest on March-21-2020
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

Browse Popular Code Answers by Language