Reputation: 541
Can someone explain it to me, why is my 1em font smaller than browser default? I set font-size on my body tag and using font-family: 'Open Sans', Arial, sans-serif;
Upvotes: 0
Views: 369
Reputation: 2965
Bootstrap sets the font size of <html>
to 10px, you need to override this to get the browser default:
html, body {
font-size: 1em;
}
Upvotes: 2