Y
Hacker News
new
|
ask
|
show
|
jobs
by
andreash
4098 days ago
I think the "Pixels vs ems" was a bit short. Anyone?
http://primercss.io/guidelines/
1 comments
speg
4098 days ago
Yeah, I thought rems were the new thing?
link
mdo
4098 days ago
All of GitHub is basically in pixels, save for our Markdown styles—for easy modification across devices, we use `em`s. It'd be a huge project to update that to `rem`s anytime soon.
link
andreash
4098 days ago
If you'd make it from scratch today, what technique would you use? html {font-size:62.5% } with REM?
link
mdo
4098 days ago
Set an HTML font-size—likely 16px—and use body { font-size: 1rem; }. Allows for easy media query scaling of type.
link