scusa ma nn avevo visto che avevi messo la classe nel td....chiaramente va messa le link...così:

<html>
<head>
<title>CSS</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">


.LinkBianco {
FONT-WEIGHT: bold;
FONT-SIZE: 11px;
COLOR: #ffffff;
FONT-FAMILY: Verdana, Arial;
}
A.LinkBianco:link { text-decoration: none; color:#ffffff; }


</style>
</head>

<body>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="1">
Home</td>
</tr>
</table>


</body>
</html>
se invece vuoi lasciare nel td devi fare così:
<html>
<head>
<title>CSS</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">


.LinkBianco {
FONT-WEIGHT: bold;
FONT-SIZE: 11px;
COLOR: #ffffff;
FONT-FAMILY: Verdana, Arial;
}
td.LinkBianco a:link { text-decoration: none; color:#ffffff; }


</style>
</head>

<body>

<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="1" class="LinkBianco">
Home</td>
</tr>
</table>


</body>
</html>