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
Hi, I'm struggling to filter by a media type. Any help would be greatly appreciated!
CSS
@media (max-width: 767px) { h1 { font-size: 12px } }
Console: It has the media query
parser.rules_by_media_query.keys => [:all, :print, :"(max-width:767px)", ...]
I can't figure out the syntax to filter by that media type though
#symbol parser.find_by_selector("h1", :"(max-width:767px)") => [] #string parser.find_by_selector("h1", "(max-width:767px)") => []
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I'm struggling to filter by a media type. Any help would be greatly appreciated!
CSS
Console:
It has the media query
I can't figure out the syntax to filter by that media type though
The text was updated successfully, but these errors were encountered: