Hi all... I was wondering if any of you CSS pros could tell me the difference between these.
a.class
a.class:link
.class a:link
Also I've had issues with link classes when grouping them together with others
For example all the classes below would work properly except the link class:
.class p, .class .Normal, .class a:link{
font-family: Tahoma;
font-size: 10px;
font-style: normal;
line-height: 10px;
font-weight: normal;
color: #8E8B7A;
}
If I separate the link by itself it will work...but why?
below worked.
.class p, .class .Normal{
font-family: Tahoma;
font-size: 10px;
font-style: normal;
line-height: 10px;
font-weight: normal;
color: #8E8B7A;
}
.class a:link{
font-family: Tahoma;
font-size: 10px;
font-style: normal;
line-height: 10px;
font-weight: normal;
color: #8E8B7A;
}
Thanks.



LinkBack URL
About LinkBacks


Bookmarks