ProblemYou want to place an indent in the first line of each paragraph, turning the paragraphs in Figure 2-26 into the paragraphs in Figure 2-27. Figure 2-26. The default rendering of the paragraphsFigure 2-27. The paragraphs with first lines indentedSolutionUse the text-indent property to create the indent: p { text-indent: 2.5em; margin: 0 0 0.5em 0; padding: 0; } DiscussionThe text-indent property can take absolute and relative length units as well as percentages. If you use percentages, the percentage refers to the element's width and not the total width of the page. In other words, if the indent is set to 35% of a paragraph that is set to a width of 200 pixels, the width of the indent is 70 pixels. See AlsoThe CSS 2.1 specification for more on the text-indent property at http://www.w3.org/TR/CSS21/text.html#propdef-text-indent. |