Page 1 of 1

how to make palemoon render the html tag like firefox and chrome

Posted: 2023-01-22, 19:07
by leothetechguy
In a recent forum thread of mine, Moonchild explained that the html tag doesn't render in Pale Moon, while that makes perfect sense, it's actually different from how Firefox and Chrome do it. That's why I'm proposing a workaround/fix for that problem using the Stylem Extension.

1. Download the Stylem extension: https://addons.palemoon.org/addon/stylem/

2. Add a new style, give it a name and paste in the following:

Code: Select all

html::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: inherit;
    z-index: -1;
}