Skip to content

Commit 2326dcb

Browse files
committed
Demo: add disabled input test and other minor updates.
Include an `input` and `button` disabled attribute style test. Remove `initial-scale` from the meta viewport and add the `lang` attribute to `html`.
1 parent fe15b8f commit 2326dcb

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

demo.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33
<head>
44
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
5+
<meta name="viewport" content="width=device-width">
66
<title>Normalize CSS</title>
77
<link rel="stylesheet" href="normalize.css">
88
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
@@ -291,10 +291,13 @@ <h1>Forms</h1>
291291
<p><input type="reset" value="Reset (input)"></p>
292292
<p><input type="button" value="Button (input)"></p>
293293
<p><input type="submit" value="Submit (input)"></p>
294+
<p><input type="submit" value="Disabled (input)" disabled></p>
295+
294296

295297
<p><button type="reset">Reset (button)</button></p>
296298
<p><button type="button">Button (button)</button></p>
297299
<p><button type="submit">Submit (button)</button></p>
300+
<p><button type="submit" disabled>Disabled (button)</button></p>
298301
</fieldset>
299302

300303
<fieldset id="boxsize">
@@ -318,7 +321,7 @@ <h1>Forms</h1>
318321
<div><input type="checkbox"></div>
319322

320323
<div><select><option>Option 01</option><option>Option 02</option></select></div>
321-
<div><textarea cols="30" rows="5" >Textarea text</textarea></div>
324+
<div><textarea cols="30" rows="5">Textarea text</textarea></div>
322325

323326
<div><input type="image" src="http://placekitten.com/90/24" alt="Image (input)"></div>
324327
<div><input type="reset" value="Reset (input)"></div>

0 commit comments

Comments
 (0)