Image Opacity Effect

Opacity can create subtle image effects.

Preview

Code

<style>
img{
width:140px;
opacity:0.7;
}

img:hover{
opacity:1;
}
</style>

<img src="https://via.placeholder.com/140">

More CSS Image Styling Examples (8)