Prior to the release of the RGBA element of CSS3, web designers had to use transparent background images and hacks to provide the illusion of opacity. With the RGBA element, we can now create opacity purely through CSS. The syntax looks like this: 1 2 3 div { background: rgba(94, 165, 168, 0.7); } Values [...]