-
Notifications
You must be signed in to change notification settings - Fork 22.5k
New issue
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
flex-basis: 0/0%: Fix: Issue #37597 #37601
base: main
Are you sure you want to change the base?
Conversation
7cee379
to
e918d5f
Compare
@Hexstream I've addressed the feedback you provided and made the requested updates. Let me know if there's anything else you'd like me to adjust. This is my first time contributing, so if you have any suggestions for improvement, I'd really appreciate them. Thanks again for reviewing! |
Awesome! 👍 Could you rebase your 2 commits into 1? |
e918d5f
to
e53b1ba
Compare
Done |
Preview URLs Flaws (48)URL:
(comment last updated: 2025-01-13 05:21:04) |
@@ -176,7 +176,7 @@ This example demonstrates the difference between a `flex-basis` of `0` versus a | |||
|
|||
#### HTML | |||
|
|||
We include two same-structure flex containers. These which will be styled similarly, except for their `flex-basis` values. The containers each have two children: a heading `<div>` and a `<section>`. The `<section>` element has a content `<div>` child, which will not be set as a flex item but will be given a height. | |||
We include two same-structure flex containers, which will be styled similarly, except for their `flex-basis` values. The containers each have two children: a heading `<div>` and a `<section>`. The `<section>` element has a content `<div>` child, which will not be set as a flex item but will be given a height. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would remove the comma after "similarly", as initially suggested, otherwise perfect!
e53b1ba
to
2f4feff
Compare
@estelle , @Hexstream , Let me know if anything else is required |
So, this faithfully implements my suggestions, and I see that you have slipped in 2 other changes. ;) You changed:
to:
I like that! 👍 As for the added comma right before it, I don't think it's really better than without it, |
You need
to
right? |
2f4feff
to
975bfad
Compare
Done , Sorry for my mistakes |
Sorry, could you rebase your commits into 1 again? 😅 And the commit message on one of your commits is weirdly repetitive. |
Description
This pull request corrects a typo in the flex-basis documentation under the section "Flex basis: 0 vs 0%".
Related Issues and Pull Requests
Fixes #37597
Relates to the typo in the Mdn documentation here.