gpt4 book ai didi

CSS 转换属性 - 在 IE9 和 IE10 上的结果不一致

转载 作者:行者123 更新时间:2023-11-28 07:40:11 25 4
gpt4 key购买 nike

标题:CSS 转换属性 - 在 IE9 和 IE10 上的结果不一致

当在 IE9 和 IE10 上查看时,下面这个沼泽标准 w3schools 演示代码执行不一致。问题是无法识别转换属性。

使用本地存储在计算机(即桌面)上的文件打开时工作
在存储在共享驱动器上的文件上打开时失败,例如一个网络服务器,但直接访问(不通过 h​​ttp)
当通过 http 引用打开共享上的同一文件时起作用。

尝试确定差异化因素。

<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 200px;
height: 100px;
background-color: yellow;
/* Rotate div */
-ms-transform: rotate(7deg); /* IE 9 */
-webkit-transform: rotate(7deg); /* Chrome, Safari, Opera */
transform: rotate(7deg);
}
</style>
</head>
<body>

<div>Hello</div>
<br>

<p><b>Note:</b> Internet Explorer 8 and earlier versions do not support the transform property.</p>
<p><b>Note:</b> Internet Explorer 9 supports an alternative, the -ms-transform property. Newer versions of IE support the transform property (do not need the ms prefix).</p>
<p><b>Note:</b> Chrome, Safari and Opera supports an alternative, the -webkit-transform property.</p>

</body>
</html>

最佳答案

最新的 w3schools 代码是

div {
-ms-transform: rotate(7deg); /* IE 9 */
-webkit-transform: rotate(7deg); /* Chrome, Safari, Opera */
transform: rotate(7deg);
}

http://www.w3schools.com/cssref/css3_pr_transform.asp

关于CSS 转换属性 - 在 IE9 和 IE10 上的结果不一致,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30992472/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com