Trung Vu
Trung Vu

Reputation: 541

Why is Bootstrap's 1em is smaller than browser default?

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; enter image description here

Upvotes: 0

Views: 369

Answers (1)

Josef Engelfrost
Josef Engelfrost

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

Related Questions