You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/css/Disabled sets the enabled s...

12 lines
260 B
HTML

<html>
<head><title>background-position</title></head>
<body>
<form>
<input type="button" value="Enabled Button">
<input disabled=true type="button" value="Disabled Button">
<input type="button" value="Button New">
</form>
</body>
</html>