Hover Button Effect

Change button styles on hover.

Preview

Code

<style>
button{
background:#2563eb;
color:white;
border:none;
padding:10px 16px;
transition:background .3s;
}

button:hover{
background:#1d4ed8;
}
</style>

<button>Hover</button>

More CSS Buttons Examples (8)