Is there a pure CSS way to make an input transparent?
I like to do this
input[type="text"]
{
background: rgba(0, 0, 0, 0);
border: none;
outline: none;
}
Setting the outline
property to none
stops the browser from highlighting the box when the cursor enters
input[type="text"]
{
background: transparent;
border: none;
}
Nobody will even know it's there.