Skip to content

Instantly share code, notes, and snippets.

@retx6
retx6 / newTabBackgroundSingle.css
Created May 4, 2024 12:29 — forked from drequeary/newTabBackgroundSingle.css
Changes new tab background for Firefox.
@-moz-document url("about:newtab"), url("about:home"), url(about:privatebrowsing) {
/* Sets background image and autoscale image to browser window. */
body{
background-image: url("") !important;
background-size: cover !important;
background-repeat: no-repeat !important;
background-attachment: fixed !important;
background-position-x: center !important;
background-position-y: bottom !important;
}