gpt4 book ai didi

html - -moz-溢出 : hidden not working in firefox

转载 作者:行者123 更新时间:2023-12-02 04:21:44 24 4
gpt4 key购买 nike

我需要有 Mozilla Firefox 特定的 overflow: hidden 属性,这样它应该只适用于 Firefox。

Fiddle with issue

下面是问题演示的示例代码;

    <div class="container">
<div class="hidmeinfirefox">I should be hidden in firefox</div>
</div>

.container {

}
.container .hidmeinfirefox {
height: 1px;
width: 1px;
-moz-overflow: hidden;
}

最佳答案

使用此代码

<style type="text/css">
@-moz-document url-prefix() {
.hidmeinfirefox {
overflow: hidden;
}
}
</style>

关于html - -moz-溢出 : hidden not working in firefox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29940978/

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