Explain how the difference in the values of line-height and font-size affect the height of a line. As a concrete example, assume that a paragraph has the following styles:
font-size: 14px; line-height: 20px;
The difference between the font-size and line-height defined the leading of a line. This difference is split in two, and half-leading is applied to the top and bottom of the content area to generate the inline box for an element. In the given example, the height of the inline box for text of the given element will be 20px tall. This means the line box has to be at least that tall, and possibly taller (if there are other elements in the same line that have inline boxes that are higher or lower than this one). Three pixels of half-leading are applied to the top of the 14-pixel tall content area, and 3 pixels of half-leading are applied to its bottom. Thus the inline box is 20 pixels tall.