Answers for "style color input in html"

CSS
1

css color of input

input{
  background-color: white; /*The color of your choice here*/
}
Posted by: Guest on November-29-2020
-1

input type color

<div>
    <input type="color" id="head" name="head"
           value="#e66465">
    <label for="head">Head</label>
</div>
Posted by: Guest on September-01-2020

Browse Popular Code Answers by Language