mirror of
https://github.com/necolas/normalize.css.git
synced 2024-12-25 15:14:19 +00:00
Prevent IE6 from ignoring the embedded media ruleset. Fix #10
This commit is contained in:
parent
9576d48fc2
commit
8ae3231cdb
13
normalize.css
vendored
13
normalize.css
vendored
@ -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
|
||||
@ -23,10 +23,9 @@ 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;
|
||||
@ -34,6 +33,14 @@ video {
|
||||
*zoom: 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* Prevents modern browsers from displaying 'audio' without controls
|
||||
*/
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
/* =============================================================================
|
||||
Base
|
||||
|
Loading…
Reference in New Issue
Block a user