CSS: espacio en blanco: nowrap no parece funcionar en IE

Aquí está eljsfiddle del siguiente código. @http: //jsfiddle.net/ux4DD/2. Lo que quiero es el nombreHarry Pham para estar en una línea, así que hago el ancho muy pequeño y hagowhite-space:nowrap. Funciona en Firefox, pero no en IE. Ayuda por favo

BAJO ES LA RESPUESTA. VEA JSFIDDLE ARRIBA PARA VER CÓMO SE

<html>
<head>
   <style type="text/css">
       .linkColor{
           white-space: nowrap;
       }
   </style>
</head>
<body>
<table cellpadding="0" cellspacing="0" style="width: 450px;">
   <tr>
      <td>
         <table cellpadding="0" cellspacing="0" width="100%">
             <tr>
                <td style="width:20px;border-top:1px solid gray;">
                     <span class="linkColor">Harry Pham</span>
                </td>
                <td style="height:15px;background:url('images/line.png') no-repeat;width:28px;" width="35px"></td>
                <td style="border-bottom:1px solid gray;" width="auto"></td>
             </tr>
         </table>
      </td>
   </tr>
</table>
</body>
</html>

Respuestas a la pregunta(2)

Su respuesta a la pregunta