|
Posted by Rik on 08/06/06 19:37
AF wrote:
> Is this the group for CSS questions?
>
> If so here is one. If not where can I post this.
>
> I have a bunch of links through my web pages, like these:
>
> <a class=FootNote href="http://www.bscinc.net">annuity</a>,
> <a class=FootNote href="http://www.bscinc.net">variable annuity</a>,
> <a class=FootNote href="http://www.bscinc.net">tax sheltered
> annuity</a>,
>
> Please note that I use the "class=FootNote" to format the links. It
> works well.
>
> But it is a pain to keep typing.
>
> Is there a way to do the formatting at a higher level?
>
> For example, I thought I could use something like
>
> <div class=FootNote>
It seems like an unordered list to me?
so:
<ul id="footnote">
<li><a ...</a></li>
<li><a ...</a></li>
<li><a ...</a></li>
</ul>
And apply formatting in css to
#footnote{
}
#footnote li{
}
and/or
#footnote a{
}
comp.infosystems.www.authoring.stylesheets is a good CSS group BTW.
Grtz,
--
Rik Wasmus
Navigation:
[Reply to this message]
|