- Adding Text
- Cutting, Copying, and Pasting Text
- Dragging and Dropping Text
- Using Paste Special
- Applying Headings
- Applying Character Formats
- Applying HTML Text Styles
- Using Preformatted Text
- Adding Line Breaks
- Indenting Text
- Aligning Text (HTML Method)
- Working with Lists
- Setting List Properties
- Nesting Lists
- Inserting Special Characters
- Adding Automatic Dates
- Adding Horizontal Rules
- Finding and Replacing
- Finding Text with a Simple Search
- Performing Advanced Text Searches
- Finding and Replacing in Source Code
- Finding and Replacing with a Specific Tag
- Using Regular Expressions for Searching
- Checking Spelling
Indenting Text
You won’t indent text in Dreamweaver as you would with a word processor. The most common kind of indenting, indenting the first line in a paragraph, is usually done with a tab in a word processor, but tabs have no effect in HTML. Instead, you can use the text-indent CSS style property. See Chapter 7 for more about using CSS.
You can add whitespace to text—and simulate a tab—with non-breaking spaces. See “Inserting Special Characters,” later in this chapter.
When you are indenting paragraphs to set them apart from preceding and following paragraphs, Dreamweaver uses the HTML <blockquote> tag. This indents both the left and right margins of the block quoted paragraph. You aren’t limited to paragraphs; you can block quote any block element, such as headings.
To block quote text:
- Click in the paragraph or other block element you want to indent.
Click the Indent button on the HTML mode of the Property Inspector (Figure 4.20).
Figure 4.20 Use the Indent button to apply a block quote to your text.
or
In the Text category of the Insert panel, click the Block Quote button.
or
Choose Format > Indent or press Ctrl-Alt-] (Cmd-Opt-]).
The text changes (Figure 4.21).
Figure 4.21 The block quote nicely sets off the sonnet from the commentary text.
To remove block quoting:
- Click in the paragraph or other block element you want to indent.
Click the Outdent button on the Property Inspector.
or
Choose Format > Outdent or press Ctrl-Alt-[ (Cmd-Opt-[).
The text changes.