Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Ordered List displaying List Items

1 view
Skip to first unread message

Gadrin

unread,
Apr 22, 2007, 1:05:10 PM4/22/07
to
If I use an <UL> each list item that's displayed gets a nice dark disc
in front of it, which makes it easy to pickout with your eyes.

However if I use an <OL> the numbering is just plain text and hard to
see. Is there a way to get the numbers (and only the numbers) to
bold ?

I want it to look like:

<b>1.</b> This is the first item.
<b>2.</b> This is the 2nd item.

and so on when it displays.

Gadrin

unread,
Apr 23, 2007, 1:30:57 PM4/23/07
to
found it...

<STYLE TYPE="text/css">
ol {font-weight: bold ;}
span {font-weight: NORMAL ;}
</STYLE>

<BODY>
<ol>
<li>
<div>Line 1</div>
</li>
<li>
<div>Line 2</div>
</li>
</ol>

<ol>
<li>
<span>Line 1</span>
</li>
<li>
<span>Line 2</span>
</li>
</ol>

</BODY>

0 new messages