<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 firefox space width</span>
</div>
<div>
<span>IE firefox space width</span>
</div>
我在FF和IE上运行上面的代码,与&amp; nbsp;在IE中显示与空格相同的宽度空间。但这是FF的另一个故事。 我希望上面的代码显示相同的空间宽度,&amp; nbsp;和空间,在FF,我该怎么办?
答案 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 firefox space width</span>
</div>
<div>
<span>IE firefox space width</span>
</code>
</div>