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
If you have this:
.image-container display grid grid-template-columns repeat(3, 1fr) grid-template-rows repeat(3, 1fr)
The output is exactly the same. It's probably not what the author meant to do, but it makes sense that it's left alone.
But if this is done, where the first line is indented:
The output is:
.image-container display grid grid-template-columns repeat(3 1fr) grid-template-rows repeat(3, 1fr)
Which pulls the first two lines in one indentation, which doesn't seem right. Note the line-break between 3 and 1fr and removed comma as well.
3
1fr
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you have this:
The output is exactly the same. It's probably not what the author meant to do, but it makes sense that it's left alone.
But if this is done, where the first line is indented:
The output is:
Which pulls the first two lines in one indentation, which doesn't seem right. Note the line-break between
3
and1fr
and removed comma as well.The text was updated successfully, but these errors were encountered: