Controling space after last line of Bullet List ??

W

Will

How do I control the line spacing after the last line of a bullet list?

I have tried setting the paragraph spacing to zero but that doesn't do it.

I'm trying to get rid of all the white space between the last line of a
bullet list and the next line of text on the screen.

thanks for any help.
 
S

Stefan B Rusynko

Using CSS
Create a class in a stylesheet or in an embedded style at the top of your page

..tight { margin-bottom: 0; margin-top: 0 }

Then apply it to the list tags
<ul class="tight">
<li class="tight">Some item</li>
</ul>

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| How do I control the line spacing after the last line of a bullet list?
|
| I have tried setting the paragraph spacing to zero but that doesn't do it.
|
| I'm trying to get rid of all the white space between the last line of a
| bullet list and the next line of text on the screen.
|
| thanks for any help.
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top