+ 1
i need help with a transparent div background
I'm trying to design a website page using div tags and i want the green background to have a transparent opacity of 0.25 but it keeps turning the text and input boxes transparent. how can i make it so just the background is transparent ?
1 Antwort
+ 6
With rgba colors.
#div
{
background-color: rgba (0, 255, 0, 0.25);
}