Skip to content

Commit 03c8acf

Browse files
committed
Update normalize.css and demo.html from github/master
1 parent 250222e commit 03c8acf

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

demo.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ <h1>Text-level semantics</h1>
5555

5656
<p>
5757
The <a href="#">a element</a> example<br>
58-
The <abbr title="Title text">abbr element</abbr> example<br>
58+
The <abbr>abbr element</abbr> and <abbr title="Title text">abbr element with title</abbr> examples<br>
5959
The <b>b element</b> example<br>
6060
The <cite>cite element</cite> example<br>
6161
The <code>code element</code> example<br>
6262
The <del>del element</del> example<br>
63-
The <dfn>dfn element</dfn> example<br>
63+
The <dfn>dfn element</dfn> and <dfn title="Title text">dfn element with title</dfn> examples<br>
6464
The <em>em element</em> example<br>
6565
The <i>i element</i> example<br>
6666
The img element <img src="http://placekitten.com/16/16" alt=""> example<br>

normalize.css

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! normalize.css 2011-08-11T09:26 UTC · http://github.com/necolas/normalize.css */
1+
/*! normalize.css 2011-08-12T17:28 UTC · http://github.com/necolas/normalize.css */
22

33
/* =============================================================================
44
HTML5 display definitions
@@ -373,12 +373,14 @@ input[type="submit"] {
373373
}
374374

375375
/*
376-
* Addresses box sizing set to content-box in IE8/9
376+
* 1. Addresses box sizing set to content-box in IE8/9
377+
* 2. Addresses excess padding in IE8/9
377378
*/
378379

379380
input[type="checkbox"],
380381
input[type="radio"] {
381-
box-sizing: border-box;
382+
box-sizing: border-box; /* 1 */
383+
padding: 0; /* 2 */
382384
}
383385

384386
/*

0 commit comments

Comments
 (0)