Hover Button Effect
Preview
Code
<style>
button{
background:#2563eb;
color:white;
border:none;
padding:10px 16px;
transition:background .3s;
}
button:hover{
background:#1d4ed8;
}
</style>
<button>Hover</button>
<style>
button{
background:#2563eb;
color:white;
border:none;
padding:10px 16px;
transition:background .3s;
}
button:hover{
background:#1d4ed8;
}
</style>
<button>Hover</button>