Skip to content

Instantly share code, notes, and snippets.

@mojagehub
Last active December 29, 2016 18:41
Show Gist options
  • Save mojagehub/7e6dd58e276ed161c1b3348c9ea3fc41 to your computer and use it in GitHub Desktop.
Save mojagehub/7e6dd58e276ed161c1b3348c9ea3fc41 to your computer and use it in GitHub Desktop.
フォントのカーニングとアンチエイリアスの調整

フォントのカーニングとアンチエイリアスの調整

  • font-smoothingでアンチエイリアスの調整
  • font-feature-settingsでカーニングの調整します
  • letter-spacingで文字間をお好みで空ける
@mixin fontBeauty {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-font-feature-settings: "palt" 1;
font-feature-settings: "palt" 1;
letter-spacing: .2em;
}
section {
@include fontBeauty;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment