Help with paragraph in HTML?
I have a bunch of text and a list of text with bullets. I use something like this for every bullet: <p><li>example text</li></p> The problem is that the bullets are too far away from each other. What can I do to make them closer? Thanks!
Public Comments
- Try it like this <P> <li> <br> <li> <br> <P> That has two list items but you can do more by coninuing the pattern. <br> is break BTW.
- click on the beginning of the sentence and then backspace until they are close enough. :)
- I also find using a <ul> tag before and after your <li>'s helps formatting. For example; <ul> <li>1</li> <li>2</li> </ul>
- There is a pattern involved: <li>TEST</li> <li style="position:relative;top: -5;">TEST</li> <li style="position:relative;top: -10;">TEST</li> <li style="position:relative;top: -15;">TEST</li> (remove the spaces between top: and -5, -10, and -15. Those are just there so nothing gets replaced with ...'s) What this does is moves the second item up 5 pixels. The next item must then be moved up 10 pixels to be just as close to the second item as the second item is to the first. Then the fourth item must be moved up 15 pixels in order to be as close to the third item as the third item is to the second. And so on.
Powered by Yahoo! Answers