gpt4 book ai didi

html - 仅在 CSS 文件中为 IE 指定 CSS 属性

转载 作者:可可西里 更新时间:2023-11-01 13:29:32 25 4
gpt4 key购买 nike


其实我需要指定这个属性

margin-left:-20px;

仅适用于 IE-11 和 CSS 文件中所有浏览器的其余属性

.navigator li a span {
display: block;
float: right;
width: 80px;
height: 50px;
margin-right: -10px;
margin-left:-20px;
}

有没有办法做到这一点,因为我尝试了很多解决方案都没有用
提前致谢!

最佳答案

我写的很简单,只支持IE 11+

<style type="text/css">
_:-ms-fullscreen, :root .msie11 { color: blue; }
</style>

// or you can try this

<style>
@media all and (-ms-high-contrast:none)
{
*::-ms-backdrop, .foo { color: red } /* IE11 */
}
</style>

当然还有 div...

<div class="msie11">
This is an Internet Explorer 11 and greater CSS Hack
<div>

因此文本在 Internet Explorer 11 及更高版本中显示为蓝色。玩得开心。

有关更多引用,您可以使用给定的链接四处查看

Reference

关于html - 仅在 CSS 文件中为 IE 指定 CSS 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32199888/

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