Answers for "how make input text transparent in css"

CSS
0

css transparent input text box

background-color:rgba(0, 0, 0, 0);
Posted by: Guest on August-16-2020
0

transparent input box

input[type="text"]
{
    background: transparent;
    border: none;
}
Posted by: Guest on January-20-2022

Code answers related to "how make input text transparent in css"

Browse Popular Code Answers by Language