Opacity Property

Opacity controls the transparency of elements.

Preview

Code

<style>
.box{
width:120px;
height:80px;
background:#9333ea;
opacity:0.5;
}
</style>

<div class="box"></div>

More CSS Colors Examples (8)