9951 explained code solutions for 126 technologies


cssMake background semi-transparent


background-color: rgba(255, 255, 255, 0.5);ctrl + c
background-color

set color of background

rgba(

specify both rgb and opacity (4th number, float)

255, 255, 255

set white color for our background

0.5

make our background 50% transparent