2 min to read
Opacity is a CSS property used to determine the transparency of an element.
Example
HTML
<h1>Hello<h1>
CSS
h1 { opacity: 0.2; background: red; }
Result