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

Post your tutorials for using applications or performing related tasks here.
Note: Not for "how do I...?" Questions!
Forum rules
Tutorials and Howtos should only relate to developed software, and not to third party applications. e.g.: Don't post a generic Howto for configuring a firewall.
If you have a question how to do something, you should use one of the support boards, not this board. It is meant for people to document and post instructions.
leothetechguy
Moonbather
Moonbather
Posts: 71
Joined: 2020-12-10, 18:46

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

Unread post by leothetechguy » 2023-01-22, 19:07

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;
}

Locked