Skip to content

Instantly share code, notes, and snippets.

@mojagehub
Created December 29, 2016 18:43
Show Gist options
  • Save mojagehub/fea8bcf158abbea4ede73ee2dc560f0e to your computer and use it in GitHub Desktop.
Save mojagehub/fea8bcf158abbea4ede73ee2dc560f0e to your computer and use it in GitHub Desktop.
テキストの両端を綺麗に揃える

テキストの両端を綺麗に揃える

  • 基本はtext-align: justify;でOK
  • IEの為にtext-justify: inter-ideograph;を追加
.justify {
text-align: justify;
text-justify: inter-ideograph;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment