Basic CSS Transition

Transitions animate property changes smoothly.

Preview

Code

<style>
.box{
width:120px;
height:80px;
background:#60a5fa;
transition:background 0.3s;
}

.box:hover{
background:#2563eb;
}
</style>

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

More CSS Transitions Examples (8)