Shuai Li
Shuai Li

Reputation: 2766

font-size:14px do not works

I had tried to visit github with Chrome devtools' mobile device mode. I found that github use 14px as the value of font-size,and it works nice. Then I set 14px to my own html file, but the result is quite different. enter image description here

as you can see, 14px is too small for my own project even if it's font-size equals github's.

Upvotes: 1

Views: 140

Answers (1)

kiranvj
kiranvj

Reputation: 34127

You are viewing in small viewport. Add the below meta tag in head and check again

<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

Upvotes: 2

Related Questions