line-height

Posted by & filed under L.

The line-height property defines the amount of space above and below inline elements. That is, elements that are set to display: inline or display: inline-block. This property is most often used to set the leading for lines of text. p { line-height: 1.5; } The line-height property can accept the keyword values normal or none

Continue reading →

letter-spacing

Posted by & filed under L.

The letter-spacing property controls the amount of space between each letter in a given element or block of text. Values supported by letter-spacing include font-relative values (em, rem), parent-relative values (percentage), absolute values (px) and the normal property, which resets to the font’s default. Using font-relative values is recommended, so that the letter-spacing increases or

Continue reading →

left

Posted by & filed under L.

The left property in CSS goes hand in hand with positioning. By default, elements are staticpositioned in which the left property has no effect whatsoever. But when the positioning of an element is relative, absolute, or fixed, the left value plays a big role. div { left: value (px, em, %, pt, etc) || auto

Continue reading →

justify-content

Posted by & filed under J.

The justify-content property is a sub-property of the Flexible Box Layout module. It defines the alignment along the main axis. It helps distribute extra free space leftover when either all the flex items on a line are inflexible, or are flexible but have reached their maximum size. It also exerts some control over the alignment

Continue reading →