Opacity / Transparency
The opacity CSS property sets the opacity of an element. Opacity is the degree to which content behind an element is hidden, and is the opposite of transparency.
The property may have one of the three values: 0 (invisible), number between(0,1), 1 (default value), 0.33
img {
opacity: 0.33;
}