Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/81.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 左:首字母为';我不能在internet explorer中工作_Html_Css_Internet Explorer - Fatal编程技术网

Html 左:首字母为';我不能在internet explorer中工作

Html 左:首字母为';我不能在internet explorer中工作,html,css,internet-explorer,Html,Css,Internet Explorer,在IE中,工具提示并不像我想要的那样显示 这是正确的显示器(chrome): 那是错误的显示器 这就是我的css: .tooltipfullscreen:hover:after { left: initial; right: 0; transform: none; } IE不支持initial关键字,对它的支持只是刚刚添加到Microsoft Edge中 将initial与left等属性一起使用实际上没有多大意义-众所周知,这些属性的初始值是auto,所以只需硬编码

在IE中,工具提示并不像我想要的那样显示

这是正确的显示器(chrome):

那是错误的显示器

这就是我的css:

.tooltipfullscreen:hover:after {
    left: initial;
    right: 0;
    transform: none;
}

IE不支持
initial
关键字,对它的支持只是刚刚添加到Microsoft Edge中


initial
left
等属性一起使用实际上没有多大意义-众所周知,这些属性的初始值是
auto
,所以只需硬编码即可。

就像您使用
transform:none
而不是
transform:initial
所做的那样。