personal - size text with rem

by panchroma

HTML

<div class="eg large">Some large text</div>
<div class="eg small">Some large text</div>
source: http://bit.ly/ZYIped

CSS

.eg {
    float:left;
}

.large {
    font-size:3em;
    line-height:4rem;
    background-color:grey;
}

.small {
    font-size:1.5em;
    line-height:4rem;
        background-color:grey;

}