I have inherited a stylesheet at work, with the designer no longer
working here.
In an external stylesheet it says:
thead th, thead th.locked
{
position:relative;
}
What does it mean? That for all "THEADs" and "THs" and "THs that are
of class 'locked'" to position relative?
Would
thead, th
{
position:relative;
}
do the same thing?
Is "th.locked" necessary?
Thanks,
Ann