moondance
12-19-2003, 06:10 AM
I have a class called Essay that centers a table:
table.Essay
{
margin-left:9%;
margin-right:9%;
}
One of the td's is a link.I am trying to center this, but it won't center. I have:
.Essay a
{
color: #000000;
font-size: 16px;
text-align: center;
}
.Essay a:link
{
color: #333333;
}
.Essay a:hover
{
color: #000066;
}
.Essay a:active
{
color: #000000;
}
.Essay a:visited
{
color: #333333;
}
I don't want to use:
.Essay td
{
text-align: center;}
as it would center all the other table data - i just want the link centered. What am i doing wrong?
table.Essay
{
margin-left:9%;
margin-right:9%;
}
One of the td's is a link.I am trying to center this, but it won't center. I have:
.Essay a
{
color: #000000;
font-size: 16px;
text-align: center;
}
.Essay a:link
{
color: #333333;
}
.Essay a:hover
{
color: #000066;
}
.Essay a:active
{
color: #000000;
}
.Essay a:visited
{
color: #333333;
}
I don't want to use:
.Essay td
{
text-align: center;}
as it would center all the other table data - i just want the link centered. What am i doing wrong?