Here is an example illustrating what I mean:
FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif
}
UL
{
FONT-SIZE: 8pt;
FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif
}
UL
{
FONT-SIZE: 8pt;
FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif
}
.tst
{
FONT-SIZE: 8pt;
FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif;
TEXT-ALIGN: left
}
Now, I can plainly see that the UL style will be global to any UL list
declared in code. But, the .TST is unclear to me - what is the meaning of
this convention and how do you use it?
Thanks!
Jason
It defines a class
> Here is an example illustrating what I mean:
>
> UL
> {
> FONT-SIZE: 8pt;
> FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif
> }
> .tst
> {
> FONT-SIZE: 8pt;
> FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif;
> TEXT-ALIGN: left
> }
>
> Now, I can plainly see that the UL style will be global to any UL list
> declared in code. But, the .TST is unclear to me - what is the meaning of
> this convention and how do you use it?
<div class="tst">This has the tst class applied to it, declared by .tst {
... } in CSS</div>