Issue with background color and Google Chrome

后端 未结 22 1110
一向
一向 2020-12-08 02:06

Sometimes I get a broken background in Chrome. I do not get this error with any other browser.

This is the simple CSS line responsible for the background color of b

22条回答
  •  抹茶落季
    2020-12-08 02:41

    I am not sure 100%, but try to replace selector with "html, body":

    html, body 
    {
       background: black;
       color: white;
       font-family: Chaparral Pro, lucida grande, verdana, sans-serif;
    }
    

提交回复
热议问题