blob: 663ec09ef2c4db8ae168553bdc99c27748ec6cd8 [file] [log] [blame] [edit]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>:enabled pseudo-class</title>
<style type="text/css"><![CDATA[button { background-color : red }
input { background-color : red }
button:enabled { background-color : lime }
input:enabled { background-color : lime }]]></style>
<link rel="author" title="Daniel Glazman" href="http://glazman.org/"/>
<link rel="author" title="Ian Hickson" href="mailto:[email protected]"/>
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"/> <!-- bogus link to make sure it gets found -->
<meta name="flags" content="" />
</head>
<body>
<p>
<button>A button (enabled) with green background</button>
<br></br>
<input type="text" size="36" value="a text area (enabled) with green background"></input>
</p>
</body>
</html>