Search code examples
cssstyles

css i want to apply style to everything not just body


i want to apply my style to everything not just body

style.css :

body {
    background-color: #3F3F46;
    color: #ffffff;
    cursor: url('https://lelkasa.github.io/cursourcustom.png'), auto;
}

Solution

  • Replace body with html

    html {
        background-color: #3F3F46;
        color: #ffffff;
        cursor: url('https://lelkasa.github.io/cursourcustom.png'), auto;
    }
    

    You can also use * because the * selector selects all elements.

    * {
        background-color: #3F3F46;
        color: #ffffff;
        cursor: url('https://lelkasa.github.io/cursourcustom.png'), auto;
    }