0
Firefox position bug by parent with "filter"位置:位置のような固定作品:Firefoxで絶対CSSフィルターを使用して
私は上記の質問を読んでいると、それがFirefoxでCSSフィルターを使用してposition: absolute
に正常に動作します。しかし、CSSフィルターを使用しているposition: fixed
はまだ期待どおりではありません。 FirefoxでCSSフィルターを使用してposition: fixed
は以下のように、position: absolute
のように動作します:
html {
-moz-filter: grayscale(100%);
filter: grayscale(100%);
height: 100%;
}
img{
position: fixed;
bottom: 10px;
right: 10px;
}
div {
margin-top: 10000px;
}
<img src="https://www.google.com/images/srpr/logo3w.png">
<div id="b">The end.</div>
誰もがこの問題を解決してもらえますか?