Answers for "how to have a drop down in html and also change the background to light or dark"

CSS
2

css dark mode

@media (prefers-color-scheme: dark) {
  body {
    background-color: black;
    color: white;
  }
}
Posted by: Guest on September-25-2020

Code answers related to "how to have a drop down in html and also change the background to light or dark"

Browse Popular Code Answers by Language