为什么宽度不同?

时间:2011-06-09 09:24:47

标签: css firefox

<style>
span {  
font-family: "Fixedsys", "Courier New", Courier, mono, serif;
font-size: 14px;
background-color: #E7E5DC;
}
span{word-spacing:-10px}/*FireFox*/
*html span{word-spacing:0}/*ie6fixed*/
*+html span{word-spacing:0}/*ie7fixed*/
</style>
<div>
<span>IE&nbsp;firefox&nbsp;space&nbsp;width</span>
</div>
<div>
<span>IE firefox space width</span>
</div>

我在FF和IE上运行上面的代码,与&amp; nbsp;在IE中显示与空格相同的宽度空间。但这是FF的另一个故事。 我希望上面的代码显示相同的空间宽度,&amp; nbsp;和空间,在FF,我该怎么办?

1 个答案:

答案 0 :(得分:1)

尝试使用&lt; code tag告诉您有关monospace的浏览器。这是我的工作样本:

<style>
span {  
font-family: "Fixedsys", "Courier New", Courier, mono, serif;
font-size: 14px;
background-color: #E7E5DC;
}
</style>
<div>
<code>
<span>IE&nbsp;firefox&nbsp;space&nbsp;width</span>
</div>
<div>
<span>IE firefox space width</span>
</code>
</div>