使用此HTML作为示例:
<HTML> <head> <Title>IE 8 Quirks Font Size</Title> <style type="text/CSS"> #testdiv { Font-size: large; } </style> </head> <body> <div ID="testdiv">Here is some text</div> <div>And some unstyled text</div> </body></HTML>
如果你在IE 8中使用怪癖模式与标准模式进行比较,那么外观上有不同之处:
显然整个网站都采用了假设模式布局的风格.我想找的是:
>关于IE怪癖模式与标准模式如何区别对待字体的文档
>关于如何调整CSS使其像以前一样呈现的一些解释
>理想情况下,一些魔术网站范围的CSS基本上使字体渲染,好像怪癖模式仍然在发挥作用
这意味着大的怪异模式与标准模式下的x大相同.
尝试将代码更改为:
<HTML> <head> <Title>IE 8 Quirks Font Size</Title> <style type="text/CSS"> #testdiv { Font-size: x-large; } </style> </head> <body> <div ID="testdiv">Here is some text</div> <div>And some unstyled text</div> </body></HTML>
这应该会在IE 8标准模式下为您提供与当前CSS在Quirks模式下相同的结果.
你可以在这里读到它:
http://msdn.microsoft.com/en-us/library/bb250395(VS.85).aspx
总结Keyword Values of the Font-size Property
The medium value of the Font-size property matches the default normal
Font size.The keyword values of this property include xx-small,x-small,small,medium,large,x-large,and xx-large. With earlIEr versions of Internet Explorer,these values are not defined intuitively. The medium value is not the default normal Font size; small is the default.
以上是内存溢出为你收集整理的html – font-size:在IE 8怪癖与标准模式下,大看起来不同全部内容,希望文章能够帮你解决html – font-size:在IE 8怪癖与标准模式下,大看起来不同所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)