Sha256: a0c2591111e3f05a7d870566753b41da07b5687b02366f32af940214cc64b647

Contents?: true

Size: 908 Bytes

Versions: 3

Compression:

Stored size: 908 Bytes

Contents

@include normalize-version('HTML5 Display Definitions');

// ==========================================================================
// HTML5 display definitions
// ==========================================================================

// Corrects `block` display not defined in IE 8/9.

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}

// Corrects `inline-block` display not defined in IE 8/9.

audio,
canvas,
video {
    display: inline-block;
    @if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
        *display: inline;
        *zoom: 1;
    }
}

// Prevents modern browsers from displaying `audio` without controls.
// Remove excess height in iOS 5 devices.

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

// Addresses styling for `hidden` attribute not present in IE 8/9.

[hidden] {
    display: none;
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
compass-normalize-1.4.2 stylesheets/normalize/_html5.scss
compass-normalize-1.4.1 stylesheets/normalize/_html5.scss
compass-normalize-1.4 stylesheets/normalize/_html5.scss