Problem Statement
Which CSS function adjusts the transparency of a color?
Explanation
The `rgba()` function defines colors with alpha transparency. Example: `rgba(255, 0, 0, 0.5)` creates a semi-transparent red background.
Code Solution
SolutionRead Only
div { background-color: rgba(0, 0, 255, 0.2); }Practice Sets
This question appears in the following practice sets:
