Disabled UI Style

Style disabled interface elements.

Preview

Code

<style>
button{
padding:10px 16px;
}

button:disabled{
background:#9ca3af;
color:white;
cursor:not-allowed;
}
</style>

<button disabled>Disabled Button</button>

More CSS User Interface Examples (8)