How to remove line break before <ul>

I want my bullet points to appear immediately after a paragraph of text. But the opening <ul> has the effect of forcing an empty line in between the text paragraph and the first bullet point.

I’m sure this is ‘correct’ behaviour, but perhaps I can use CSS to convince it not to do this?

Thanks for any help.

Try this out:


p { margin: 0; }
ul { margin-top: 0; }

Modify it to your needs, of course, but you get the general idea of it.

Doh! I KNEW it was that easy.

Thanks a bundle. :smiley: