programming-examples/css/Disabled sets the enabled state of an element.html

12 lines
260 B
HTML
Raw Normal View History

2019-11-15 12:59:38 +01:00
<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>