We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@media
@supports
@media (prefers-color-scheme: dark) { /* some rules */ }
prefers-color-scheme
Safari for Mac 和 Safari for Mobile(包括 iOS 端的 Chrome 等使用 Webkit 内核的浏览器)。
@supports (-webkit-hyphens: none) { /* some rules */ }
-webkit-hyphens
移动端 Safari 浏览器(包括 iOS 端的 Chrome 等使用 Webkit 内核的浏览器),但不包括 Safari for Mac。
@supports (-webkit-touch-callout: none) { /* some rules */ }
-webkit-touch-callout
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@media
用于基于一个或多个媒体查询的结果来应用样式表中的一部分。@supports
指定依赖于浏览器中的一个或多个特定的 CSS 功能的支持声明。深色模式
prefers-color-scheme
Safari
Safari for Mac 和 Safari for Mobile(包括 iOS 端的 Chrome 等使用 Webkit 内核的浏览器)。
-webkit-hyphens
Safari for Mobile
移动端 Safari 浏览器(包括 iOS 端的 Chrome 等使用 Webkit 内核的浏览器),但不包括 Safari for Mac。
-webkit-touch-callout
The text was updated successfully, but these errors were encountered: