Answers for "css input disabled only"

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

how to fix input field and disabled

<input type="text" readonly="readonly" />
Posted by: Guest on February-07-2020

Browse Popular Code Answers by Language