![]() |
|
|
|||||||
![]() |
HTML - CSS abourt order list and unorder list (<OL>, <UL>) |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
When I using <OL> and <UL>,
I find there is a large space at the top and bottom of the list. How can I set those space height in css/js ? Please advise. Thanks. Cylix |
|
|
|
|
#2 |
|
Posts: n/a
|
Cylix wrote:
> When I using <OL> and <UL>, > I find there is a large space at the top and bottom of the list. > How can I set those space height in css/js ? > > Please advise. Thanks. > try: OL, UL { margin-top: 0; margin-bottom: 0; } in your stylesheet ans see what happens then study: http://www.w3.org/TR/CSS21/box.html -- Take care, Jonathan ------------------- LITTLE WORKS STUDIO http://www.LittleWorksStudio.com |
|
|
|
#3 |
|
Posts: n/a
|
Thanks Jonathan.
The problem is solved. |
|