programming-examples/css/Disabled sets the enabled state of an element.html
2019-11-15 12:59:38 +01:00

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>