Click to See Complete Forum and Search --> : can you set a font size for <li> ???


sampleman
08-16-2003, 07:35 AM
Hi,

I am trying to set a font size for
some code and cant figure it out

I want to set the font size for the numbered lists so there all size=-1

<ol>
<li>A
<li>B
<li>C
</ol>


How would I do this ?


Thanks

Charles
08-16-2003, 07:43 AM
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Example</title>
<style type="text/css">
<!--
li {font-size:80%}
-->
</style>
<ol>
<li>Fee</li>
<li>Fie</li>
<li>Foe</li>
<li>Fum</li>
</ol>