How to enable font-feature-settings for a specific font-family #9034
-
Hey gang,
and enable the font-family in
and that works great expect that Chrome does not pick up the So my question is if there's a Tailwind specific way to apply these |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
For the simplest solution here since it is only 1 combination selector of .italic.font-source {
font-feature-settings: "ss01" 1;
} Otherwise, you could have a go at writing a custom plugin for it. |
Beta Was this translation helpful? Give feedback.
-
Opened a PR to allow you to configure default font-feature-settings for your configured custom fonts in the framework: Think this will help 👍 |
Beta Was this translation helpful? Give feedback.
-
@wongjn Thank you for this super simple tip! I'll add that in until Adam's PR is merged! |
Beta Was this translation helpful? Give feedback.
-
font-feature-settings |
Beta Was this translation helpful? Give feedback.
Opened a PR to allow you to configure default font-feature-settings for your configured custom fonts in the framework:
#9039
Think this will help 👍