mirror of
https://github.com/necolas/normalize.css.git
synced 2024-12-25 15:14:19 +00:00
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`.
This commit is contained in:
parent
fe15b8f862
commit
2326dcb082
@ -1,8 +1,8 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width">
|
||||||
<title>Normalize CSS</title>
|
<title>Normalize CSS</title>
|
||||||
<link rel="stylesheet" href="normalize.css">
|
<link rel="stylesheet" href="normalize.css">
|
||||||
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
||||||
@ -291,10 +291,13 @@
|
|||||||
<p><input type="reset" value="Reset (input)"></p>
|
<p><input type="reset" value="Reset (input)"></p>
|
||||||
<p><input type="button" value="Button (input)"></p>
|
<p><input type="button" value="Button (input)"></p>
|
||||||
<p><input type="submit" value="Submit (input)"></p>
|
<p><input type="submit" value="Submit (input)"></p>
|
||||||
|
<p><input type="submit" value="Disabled (input)" disabled></p>
|
||||||
|
|
||||||
|
|
||||||
<p><button type="reset">Reset (button)</button></p>
|
<p><button type="reset">Reset (button)</button></p>
|
||||||
<p><button type="button">Button (button)</button></p>
|
<p><button type="button">Button (button)</button></p>
|
||||||
<p><button type="submit">Submit (button)</button></p>
|
<p><button type="submit">Submit (button)</button></p>
|
||||||
|
<p><button type="submit" disabled>Disabled (button)</button></p>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<fieldset id="boxsize">
|
<fieldset id="boxsize">
|
||||||
|
Loading…
Reference in New Issue
Block a user