Created
August 17, 2012 13:26
-
-
Save danscotton/3378685 to your computer and use it in GitHub Desktop.
supporting multiple languages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---------------------------------------- | |
// english site | |
<html lang="en"> | |
// default typography in here | |
body { | |
font-family: Helvetica, Arial, sans-serif; | |
font-size: xx; | |
line-height: xx; | |
} | |
// ---------------------------------------- | |
// chinese site | |
<html lang="zh"> | |
// chinese specific css here | |
[lang="zh"] body { | |
font-family: 'Chinese Script', fallback-1, fallback-2; | |
font-size: XX; | |
line-height: XX; | |
} | |
// extensibility | |
<html lang="my"> // burmese | |
<html lang="ab"> // arabic | |
<html lang="he"> // hebrew | |
etc. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment