|
|
|
|
|
by piskerpan
1319 days ago
|
|
62.5% was specifically to bring the default 16px to 10px, which meant now 1em = 10px, at least at the root. With that, you could easily size your entire layout in EMs and, yes, keep it readable: .main {
width: 80em
}
.sidebar {
width: 20em;
}
.content {
width: 60em;
}
There's no point in bringing the font down to 10px if you're not going to use EMs |
|