Intro to css values - #44937
Merged
Merged
Conversation
Contributor
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
…s/index.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
dipikabh
requested changes
Aug 5, 2026
| @@ -74,6 +74,8 @@ The `font-style` property is specified as a single keyword chosen from the list | |||
| @@ -87,6 +87,8 @@ The `font-weight` property is specified using either a `<font-weight-absolute>` | |||
Comment on lines
44
to
51
| - `<number> <number> <number>` | ||
| - : The first value is the minimum word length before words should be hyphenated. The second value is the minimum number of characters before the hyphen. The third value is the minimum number of characters after the hyphen. | ||
| - `<number> <number>` | ||
| - : The first value is the minimum word length before words should be hyphenated. The second value is the minimum number of characters before the hyphen. The minimum number of characters after the hyphen will be set equal to the second value. | ||
| - `<number>` | ||
| - : The value is the minimum word length before words should be hyphenated. The minimum number of characters before and after the hyphen will be set to `auto`. | ||
|
|
||
| If `auto` is set for any of the values, the user agent will choose an appropriate value for the current layout. Unless the user agent can calculate a better value, the following default values will be used: |
Contributor
There was a problem hiding this comment.
Probably outside the scope of your PR, but flagging it here: auto needs to be part of the definition list. number can be a single entry that could explain the meaning of one-, two-, three-value cases
Co-authored-by: Dipika Bhattacharya <dipika@foss-community.org>
estelle
commented
Aug 10, 2026
Corrected a typo in the description of the font-weight property.
dipikabh
approved these changes
Aug 11, 2026
dipikabh
left a comment
Contributor
There was a problem hiding this comment.
Thanks for the updates!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
CSS properties include a "Values" section.
Sometimes there is an intro to the values. sometimes there isn't.
This is the third PR in an attempt to make things consistent. This PR addresses some of the properties that had no intro sentence in the values section that and didn't need a whole bunch of other work done
continuation of #44833