Heads up before you start reading: This is a unique post, not a duplicate. Why? Because the answer provided here is different and addresses the specific need we have.
So, what we are looking to achieve is to make an input field transparent, as shown below:
Isn't that a beautiful design? Now, take a look at this:
That looks just... terrible. Is there a way to fix this?
The following solution does NOT yield the desired result:
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.3) inset;
-webkit-text-fill-color: #EEEEEE !important;
}
Any suggestions or ideas on how to address this issue?