Skip to content

Commit

Permalink
Prevent IE6 from ignoring the embedded media ruleset. Fix #10
Browse files Browse the repository at this point in the history
  • Loading branch information
necolas committed Jul 20, 2011
1 parent 9576d48 commit 8ae3231
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions normalize.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! normalize.css 2011-07-12T10:51 UTC · http://github.com/necolas/normalize.css */
/*! normalize.css 2011-07-20T19:03 UTC · http://github.com/necolas/normalize.css */

/* =============================================================================
HTML5 element display
Expand All @@ -23,17 +23,24 @@ section {

/*
* Corrects inline-block display not defined in IE6/7/8/9 & FF3
* Known limitation: IE6 will not apply style for 'audio[controls]'
*/

audio[controls],
audio,
canvas,
video {
display: inline-block;
*display: inline;
*zoom: 1;
}

/*
* Prevents modern browsers from displaying 'audio' without controls
*/

audio:not([controls]) {
display: none;
}


/* =============================================================================
Base
Expand Down

0 comments on commit 8ae3231

Please sign in to comment.