Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CSS & Lists

Status
Not open for further replies.

sparky68

Programmer
Feb 27, 2002
11
0
0
US
i'm not sure if this is the right group for this message... if there if a better place for this please let me know.

i want to put styles on a list. like this:

ul.disc
{
list-style-type: disc
}

that will set the type for the whole list, but how do i set a font in css for the list items?

thanks for any help.
 
You can use this to make sure all list items directly after the ul.disc element are Georgia or if that font is missing Arial, Verdana and then in last resort system.

Add this after the CSS you currently have :

ul.disc li
{
font-family: Georgia, Arial, Verdana, system ;
}
Gary Haran
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top