Skip to content

[css-align-3] Add left|right to *-position grammar #2169

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

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions css-align-3/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -349,15 +349,16 @@ Positional Alignment: the ''center'', ''start'', ''end'', ''self-start'', ''self
(to specify default values for 'justify-self' and 'align-self').
<pre class='prod'>
<dfn>&lt;self-position></dfn> = center | start | end | self-start | self-end |
flex-start | flex-end;
flex-start | flex-end | left | right;
</pre>
<dt><<content-position>>
<dd>
This set is used by 'justify-content' and 'align-content'
to align the box's contents within itself.

<pre class='prod'>
<dfn>&lt;content-position></dfn> = center | start | end | flex-start | flex-end;
<dfn>&lt;content-position></dfn> = center | start | end | flex-start | flex-end |
left | right;
</pre>
</dl>

Expand Down Expand Up @@ -864,7 +865,7 @@ The 'justify-content' And 'align-content' Properties</h3>

<pre class="propdef">
Name: justify-content
Value: normal | <<content-distribution>> | <<overflow-position>>? [ <<content-position>> | left | right ]
Value: normal | <<content-distribution>> | <<overflow-position>>? [ <<content-position>> ]
Initial: normal
Applies to: multicol containers, flex containers, and grid containers
Inherited: no
Expand Down Expand Up @@ -1148,7 +1149,7 @@ Inline/Main-Axis Alignment: the 'justify-self' property</h3>

<pre class="propdef">
Name: justify-self
Value: auto | normal | stretch | <<baseline-position>> | <<overflow-position>>? [ <<self-position>> | left | right ]
Value: auto | normal | stretch | <<baseline-position>> | <<overflow-position>>? [ <<self-position>> ]
Initial: auto
Applies to: block-level boxes, absolutely-positioned boxes, and grid items
Inherited: no
Expand Down