这是下面的代码的jsfiddle.
http://jsfiddle.net/ux4DD/2/.我想要的是Harry Pham在一行中的名字,所以我使宽度非常小,做白色空间:nowrap.它在Firefox上工作,但不是IE.请帮助
以下是答案.请看JSFIDDLE以了解它如何看待
<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>