0rem IE8 support

by austinpray

HTML

<div class="outer">
    <div class="inner">
        <h1>Test</h1>
        <p>riveting Content riveting Content riveting Content </p>
    </div>
</div>

CSS

body {
    font-family: sans-serif;
}

.outer {
    background: red;
    padding-left: 100px;
    color: #fff;
}

.inner {
    background: blue;
    padding: 1em;
}

.outer {
    padding-left: 0rem;
}
}