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
A style read as:
grid-gap: 10px 80px;
is written as:
grid-gap: 80px 10px;
Similarly, a style read as:
gap: 10px 80px;
gap: 80px 10px;
row and col are incorrectly assigned here:
https://github.com/AngleSharp/AngleSharp.Css/blob/main/src/AngleSharp.Css/Declarations/GridGapDeclaration.cs#L33
and here:
https://github.com/AngleSharp/AngleSharp.Css/blob/main/src/AngleSharp.Css/Declarations/GapDeclaration.cs#L33
The text was updated successfully, but these errors were encountered:
PR welcome.
Sorry, something went wrong.
Implemented and ready for the next preview / 1.0.0.
Fixed grid and grid-gap ordering #137
12f61a1
No branches or pull requests
Bug Report
Description
A style read as:
is written as:
Similarly, a style read as:
is written as:
Possible Solution
row and col are incorrectly assigned here:
https://github.com/AngleSharp/AngleSharp.Css/blob/main/src/AngleSharp.Css/Declarations/GridGapDeclaration.cs#L33
and here:
https://github.com/AngleSharp/AngleSharp.Css/blob/main/src/AngleSharp.Css/Declarations/GapDeclaration.cs#L33
The text was updated successfully, but these errors were encountered: