Below is my CSS file for list.
li {
list-style-position: outside;
}
ul {
list-style-position: outside;
list-style-type: disc;
margin-left: 15;
}
ul ul {
list-style-position: outside;
list-style-type: circle;
margin-left: 25px;
}
ol {
list-style-position: outside;
list-style-type: upper-alpha;
}
ol ol {
list-style-position: outside;
list-style-type: decimal;
margin-left: 25px;
}
ol ol ol {
list-style-position: outside;
list-style-type: upper-alpha;
margin-left: 35px;
}
- li {
- list-style-position: outside;
- }
- ul {
- list-style-position: outside;
- list-style-type: disc;
- margin-left: 15;
- }
- ul ul {
- list-style-position: outside;
- list-style-type: circle;
- margin-left: 25px;
- }
- ol {
- list-style-position: outside;
- list-style-type: upper-alpha;
- }
- ol ol {
- list-style-position: outside;
- list-style-type: decimal;
- margin-left: 25px;
- }
- ol ol ol {
- list-style-position: outside;
- list-style-type: upper-alpha;
- margin-left: 35px;
- }
Now, here's the problem. When I use do this:
<b>Section Title</b>
<ul><li>List 1</li>
<li>List 2</li>
<li>List 3</li>
</ul>
- <b>Section Title</b>
- <ul><li>List 1</li>
- <li>List 2</li>
- <li>List 3</li>
- </ul>
The result showed up like this:
Section Title
*List 1
*List 2
*List 3
Is there a way to not having the line break after the "Section Title"? I want it to show up like this:
Section Title
*List 1
*List 2
*List 3
How to I take out the extra line break?
Any help is grateful!
ljCharlie[/code]