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
目前 Safari 和 IE 不支持@media 嵌套语法,但实际上规范是支持该语法的。例如:
Input:
@media (min-width: 36em) { @media (max-width: 1200px) { .foo { font-size: 18px; } } }
需要做一次转换:
Output:
@media (min-width: 36em) and (max-width: 1200px) { .foo { font-size: 18px; } }
考虑以单独的插件方式支持postcss-media-nested
postcss-media-nested
The text was updated successfully, but these errors were encountered:
一丝大美女有没有做fis组件支持的打算呢?
Sorry, something went wrong.
@shucheng 不知道怎么写呢,如果你有兴趣可以帮忙写一个哈。
No branches or pull requests
目前 Safari 和 IE 不支持@media 嵌套语法,但实际上规范是支持该语法的。例如:
Input:
需要做一次转换:
Output:
考虑以单独的插件方式支持
postcss-media-nested
The text was updated successfully, but these errors were encountered: