Answers for "how to disable for input field in html using 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

Code answers related to "how to disable for input field in html using css"

Browse Popular Code Answers by Language