Sha256: ab8d51ee09f2fd91f8d605f1b02fde42b93a95ab6783040f39aee4fb71d8f48f

Contents?: true

Size: 914 Bytes

Versions: 2

Compression:

Stored size: 914 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,
main,
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

2 entries across 2 versions & 2 rubygems

Version Path
modularis-6.4.3 stylesheets/normalize/_html5.scss
compass-normalize-1.4.3 stylesheets/normalize/_html5.scss