I have read the above question and it works fine on position: absolute
using CSS filter in Firefox. But position: fixed
using CSS filter is still not as expected. position: fixed
using CSS filter in Firefox works like position: absolute
, like below:
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>
Could anyone solve this problem?