Hover and Focus States

Interactive elements should have 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>

More CSS Accessibility Examples (8)