Since 2019, both Android and IOS platforms have started to use dark mode. Of course there is nothing wrong with this, but when our page is opened by the user in dark mode, they will be instantly blinded by the traditional white color. The following will briefly talk about how to make the page support dark mode. Prepare In fact, we just need to use the prefers-color-scheme media query in CSS.
illustrate
HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> <title>Adapt the page to dark mode</title> </head> <body class="back"> <div class="models"><h1>Test text</h1></div> </body> </html> CSS .back {background: white; color: #555;text-align: center} @media (prefers-color-scheme: dark) { .back {background: #333; color: white;} .models {border:solid 1px #00ff00} } @media (prefers-color-scheme: light) { .back {background: white; color: #555;} .models {border:solid 1px #2b85e4} } The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. |
<<: MySQL uses custom sequences to implement row_number functions (detailed steps)
>>: Using css-loader to implement css module in vue-cli
1. Why does nginx use gzip? 1. The role of compre...
There are many tags in XHTML, but only a few are ...
Table of contents 1. Error message 2. Cause of er...
//MySQL statement SELECT * FROM `MyTable` WHERE `...
Problem Description When VMware Workstation creat...
Installation Steps 1. Install Redis Download the ...
Table of contents Rendering API changes Render fu...
This article describes how to install MySQL 5.7 f...
1. This is a bit complicated to understand, I hop...
Table of contents Introduction to bootstrap and i...
This article shares the specific code of JavaScri...
This tutorial explains how to verify the IP addre...
Table of contents 1. Animated Christmas Tree Made...
Nowadays, whether you are on the sofa at home or ...
1. Introduction I recently worked on a project an...