Skip to content

Instantly share code, notes, and snippets.

@danscotton
Created August 17, 2012 13:26
Show Gist options
  • Save danscotton/3378685 to your computer and use it in GitHub Desktop.
Save danscotton/3378685 to your computer and use it in GitHub Desktop.
supporting multiple languages
// ----------------------------------------
// 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