-
Notifications
You must be signed in to change notification settings - Fork 23.2k
added normal & match-parent values and updated intro #44017
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
Open
dletorey
wants to merge
4
commits into
mdn:main
Choose a base branch
from
dletorey:43867-position-anchor-normal
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+10
−2
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
002f1c3
added normal & match-parent values and updated intro
dletorey e60f4e9
Merge branch 'main' into 43867-position-anchor-normal
dletorey bf42bcf
Apply suggestion from @hamishwillee
hamishwillee 9363199
Apply suggestion from @hamishwillee
hamishwillee File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -7,15 +7,17 @@ browser-compat: css.properties.position-anchor | |||||
| sidebar: cssref | ||||||
| --- | ||||||
|
|
||||||
| The **`position-anchor`** [CSS](/en-US/docs/Web/CSS) property specifies the anchor name of the **anchor element** (i.e., an element that has an **anchor name** set on it via the {{cssxref("anchor-name")}} property) a positioned element is associated with. | ||||||
| The **`position-anchor`** [CSS](/en-US/docs/Web/CSS) property specifies the default **anchor element** (i.e., an element that has an **anchor name** set on it via the {{cssxref("anchor-name")}} property), which is used by {{cssxref("position-area")}}, {{cssxref("position-try")}}, and (by default) all anchor functions ({{cssxref("anchor()")}} and {{cssxref("anchor-size()")}}) applied to this element. | ||||||
|
|
||||||
| ## Syntax | ||||||
|
|
||||||
| ```css | ||||||
| /* Single values */ | ||||||
| position-anchor: normal; | ||||||
| position-anchor: auto; | ||||||
| position-anchor: none; | ||||||
| position-anchor: --anchor-name; | ||||||
| position-anchor: match-parent; | ||||||
|
|
||||||
| /* Global values */ | ||||||
| position-anchor: inherit; | ||||||
|
|
@@ -27,15 +29,21 @@ position-anchor: unset; | |||||
|
|
||||||
| ### Values | ||||||
|
|
||||||
| - `normal` | ||||||
| - : If {{cssxref("position-area")}} is `none`, behaves as `none`. Otherwise, behaves as `auto`. | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
|
||||||
| - `auto` | ||||||
| - : Associates a positioned element with its implicit anchor element, if it has one — for example as set by the non-standard HTML [`anchor`](/en-US/docs/Web/HTML/Reference/Global_attributes/anchor) attribute. | ||||||
|
|
||||||
| - `none` | ||||||
| - : The initial (default) value. The positioned element is not associated with an anchor element. | ||||||
| - : The positioned element is not associated with an anchor element. | ||||||
|
|
||||||
| - {{cssxref("dashed-ident")}} | ||||||
| - : The name of the anchor element to associate the positioned element with, as listed in the anchor element's {{cssxref("anchor-name")}} property. This is known as the **default anchor specifier**. | ||||||
|
|
||||||
| - `match-parent` | ||||||
| - : Uses the same default anchor element as the parent or originating element, if this is a [pseudo-element](/en-US/docs/Glossary/Pseudo-element) if any, and if that would be an acceptable anchor element. Otherwise it has no default anchor element. | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't understand this. Does it mean:
Suggested change
Note, I don't know what would make a pseudo element acceptable |
||||||
|
|
||||||
| ## Description | ||||||
|
|
||||||
| This property is only relevant to "positioned" elements — elements and pseudo-elements that have a {{cssxref("position")}} of `absolute` or `fixed` set. | ||||||
|
|
||||||
Oops, something went wrong.
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.
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.
The problem predates your chagens, but I don't understand this as written. I think it means this - can you confirm? Note that I used
<anchor-name>rather than the property, because those methods specify it this way. When you link though, the value is an anchor-name property value.