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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unordered list and CSS in Netscape 1

Status
Not open for further replies.

frozenpeas

Technical User
Sep 13, 2001
893
CA
Hi,

I have a bulleted list inside a table cell. I have applied a CSS to the list but when it is displayed in Netscape, the CSS does not work.

Thanks.
 
I am just formatting text. It is wonky in Communicator 4.78 and Navigator 4.08.

Code:
<ul>
<li class=&quot;bodyStyle&quot;> Knowledge of Table Games rules</li>
<li class=&quot;bodyStyle&quot;>Knowledge of dealer customer service 
standards.</li>
<li class=&quot;bodyStyle&quot;>Ability to work consistently within 
precise work rules and procedures.</li>
</ul>

And from the CSS file:

Code:
.bodyStyle {

	font-family: Verdana, Arial, Helvetica, sans-serif;

	font-size: 12px;

	font-style: normal;

	line-height: normal;

	font-weight: normal;

	font-variant: normal;

	text-transform: none;

	color: #003333;

}

Thanks for your help.
 
You should apply your style to <ul> tag.
Also, you don't need to specify &quot;[tt]normal[/tt]&quot; values as they are like this by default.
 
Starway got there before me!

Also:: Version 4x are CRAP browsers and don't handle CSS so well! :)
So don't be too surprised if many of the things you try don't work in these browsers!



É

- :: my FIRST site in XHTML, comments/ criticism/ questions much appreciated!! :)
-
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top