blockquote
element, which is why it's used to mark up quote text. In most browsers, this will indent the text slightly to more clearly differentiate the quote from surrounding text. If you simply want to create an indentation effect on a section of text, the correct way to do so is to use CSS to create padding to the left and right of the element: don't use a structural tag such as <blockquote>
.<style type="text/css"> .indent {margin-left: 5%; margin-right: 5%;}</style>
<p class="indent">This text is indented.</p>
DreamWeaver MX (2004) | DreamWeaver 8 (2006) |
---|---|
<CUTnPASTE> REGEDIT4 [HKEY_CLASSES_ROOT\.htm\OpenWithList\Dreamweaver.exe] [HKEY_CLASSES_ROOT\Applications\Dreamweaver.exe] [HKEY_CLASSES_ROOT\Applications\Dreamweaver.exe\shell] "FriendlyCache"="Dreamweaver" "FriendlyCacheCTime"=hex:01,00,00,00,14,b4,bd,70 [HKEY_CLASSES_ROOT\Applications\Dreamweaver.exe\shell\edit] [HKEY_CLASSES_ROOT\Applications\Dreamweaver.exe\shell\edit\command] @="C:\\Program Files\\Macromedia\\Dreamweaver 3\\Dreamweaver.exe \"%1\"" </CUTnPASTE> |
<CUTnPASTE> |
Note the double backslashes in the path.