From: Paul M. <gu...@mo...> - 2003-04-18 22:01:09
|
I'm trying to generate a list of quotes, something like this:: This software is great!!! -- A happy user I agree -- Another user I'd like the quotes themselves to be in one style (probably italic) and the names to be in another style (probably normal, or bold). I can get most of the way there with stylesheets, with the source like this:: Running text... This software is great!!! `-- A happy user` Plus a stylesheet:: blockquote { font-style: italic; } blockquote cite { font-style: normal; font-weight: bold; } But, I can't get the line break between the quote and the user name. I don't want a space, so making two paragraphs doesn't work. What I really want is the equivalent of HTML's <br> tag, but I can't find it. Have I missed something? Paul. -- This signature intentionally left blank |