Day 29: SASS and LESS
SASS and LESS is site search on google to more information 1. font-variant property in CSS The font-variant property determines if a text should be shown in small capitals or not. Every lowercase character is changed into uppercase characters by using a small-caps font. But compared to the text's original capital characters, the converted uppercase letters have a smaller font size. Syntax for font-variant : font-variant: value Values : normal : It shows text in normal font. Font-variant is set to normal by default. small-caps : It displays fonts in small caps. Code : Output: 2. CSS letter-spacing Property : Character spacing in a text can be altered via the letter-spacing property. Syntax : letter-spacing: value; Values : normal : defines the standard character spacing. Normal value is the default value for letter-spacing length : establishes a length that is used as the character spacing (negati...