{"id":235583,"date":"2015-12-04T13:03:46","date_gmt":"2015-12-04T20:03:46","guid":{"rendered":"http:\/\/css-tricks.com\/?page_id=235583"},"modified":"2020-07-20T16:11:17","modified_gmt":"2020-07-20T23:11:17","slug":"font-feature-settings","status":"publish","type":"page","link":"https:\/\/css-tricks.com\/almanac\/properties\/f\/font-feature-settings\/","title":{"rendered":"font-feature-settings"},"content":{"rendered":"\n

This property gives us control over advanced typographic settings such as small caps, ligatures, and swashes. To activate them you must declare which value you need in quotes and then followed by either 1<\/code> or on<\/code> to enable. Alternatively, you can disable them with either 0<\/code> or off<\/code>:<\/p>\n\n\n\n

.element {  \n  \/* these two values do the same thing *\/\n  font-feature-settings: \"liga\" 1;\n  font-feature-settings: \"liga1\" on;\n}<\/code><\/pre>\n\n\n\n