Hover and Focus States
Preview
Code
<style>
button{
background:#2563eb;
color:white;
border:none;
padding:8px 14px;
}
button:hover,
button:focus{
background:#1d4ed8;
}
</style>
<button>Interactive Button</button>
<style>
button{
background:#2563eb;
color:white;
border:none;
padding:8px 14px;
}
button:hover,
button:focus{
background:#1d4ed8;
}
</style>
<button>Interactive Button</button>