Consider the following css class definition, taken from the worpdress twenty-twelve theme:
.entry-header {
margin-bottom: 24px;
margin-bottom: 1.714285714rem;
}
Why is the margin-bottom
defined twice, once with px
and once with rem
units? Which unit will be chosen by the browser?