Does anyone know how to change the color of the date picker that appears in certain browsers but is unsure about the selector's name?
HTML:
<form action="pledge.html" method="post">
<input type="date" id="birthday" name="user_bday">
</form>
CSS:
body {
background-color: black;
}
input {
height: 45px;
width: 40%;
border-width: 3px;
border-style: solid;
border-color: white;
border-radius: 90px;
margin: 10px;
text-align: center;
font-size: 24px;
color: white;
font-weight: bold;
background-color: transparent;
outline: none;
}
input[type="date"] {
/*Need help with this section*/
}
Check out the fiddle here:
https://jsfiddle.net/froggomad/gznx60j1/25/
Your assistance is greatly appreciated!