Answers for "css input how to disable border"

5

html input box no border

border-width:0px;
border:none;
outline:none;
Posted by: Guest on August-25-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

Code answers related to "css input how to disable border"

Browse Popular Code Answers by Language