Answers for "how to apply style to only those <input> tags which have 'disabled' attribute to them?"

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" tabindex="-1" >

 <style type="text/css">
  input[name=username] {
    pointer-events: none;
   }
 </style>
Posted by: Guest on January-19-2021
0

input disabled css

input diasbled
Posted by: Guest on December-01-2021

Browse Popular Code Answers by Language