Some elements have enabled and disabled states, for example the form elements.
:disabled
selector selects element in disabled state.
The :enabled
selectors don't match any element that cannot be disabled.
:disabled { style properties }
:disabled |
Yes | 9.0 | Yes | Yes | Yes |
An example showing how to use :disabled CSS selector.
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
:disabled { <!--from ww w. ja v a 2 s . c o m-->
border: thin black solid;
padding: 4px;
}
</style>
</head>
<body>
<a href="http://java2s.com">Visit the java2s.com</a>
<textarea> This is an enabled textarea</textarea>
<textarea disabled> This is a disabled textarea</textarea>
</body>
</html>