相关疑难解决方法(0)

CSS:white-space:nowrap似乎在IE中不起作用

这是jsfiddle以下代码.http://jsfiddle.net/ux4DD/2/.我想要的是名字Harry Pham在一行,所以我把宽度做得很小white-space: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>
Run Code Online (Sandbox Code Playgroud)

html css

14
推荐指数
1
解决办法
3万
查看次数

标签 统计

css ×1

html ×1