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
Maintain the 6 column grid, but add styling to specific classes for better performance.
This: [class^="grid-"], [class_=" grid-"] { /_ Styles */ }
Becomes: .grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 { /* Styles */ }
The text was updated successfully, but these errors were encountered:
Added in v2.5.
Regex-style pseudo selectors are much slower to render. Explicitly naming classes is less condense by far more performant. Learn more.
Sorry, something went wrong.
Updated grid for better performance
b242e5c
cferdinandi#9
No branches or pull requests
Maintain the 6 column grid, but add styling to specific classes for better performance.
This:
[class^="grid-"],
[class_=" grid-"] {
/_ Styles */
}
Becomes:
.grid-1,
.grid-2,
.grid-3,
.grid-4,
.grid-5,
.grid-6 {
/* Styles */
}
The text was updated successfully, but these errors were encountered: