I cannot get it to work right it should be a white colour with 20% opacity, it worked once but then I deleted it and forgot how it went it was very similar to the above code, can anyone fix it?
In this notation, the RGBA values are used to define a color in CSS. The first three values (255, 255, 255) represent the intensity of the red, green, and blue channels respectively, ranging from 0 to 255. The fourth value (0.2) denotes the alpha channel, which controls transparency, varying from 0 (fully transparent) to 1 (fully opaque).
To clarify, ensure there is no percentage sign (%) after the alpha value, and remember to include a decimal point (.) before the opacity value (e.g., 0.2 for 20% opacity). This ensures proper rendering of the desired color with the specified transparency level.
The exact code is:
rgba(255, 255, 255, 0.2) !important;