There is a need for styling input[type="color"] . For as long as I try, I can’t understand all the styles of this object. Help stylize and do it like in the picture:
My attempt:
input[type="color"] { width: 100px; height: 100px; border: none; border-radius: 50%; overflow: hidden; } .color {position: relative;} .color:after { display: block; position: absolute; content: ''; top: 25px; left: 25px; width: 50px; height: 50px; border-radius: 50%; background-color: white; } <div class="color"><input type="color"></div> 