Skip to content

Commit 65c2d5f

Browse files
committed
[css-view-transitions-1] Use position: absolute instead of position: fixed on ::view-transition
Fixes w3c#12116
1 parent ace0934 commit 65c2d5f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

css-view-transitions-1/Overview.bs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ urlPrefix: https://wicg.github.io/navigation-api/; type: interface;
857857
}
858858

859859
:root::view-transition {
860-
position: fixed;
860+
position: absolute;
861861
inset: 0;
862862
}
863863

@@ -1999,7 +1999,11 @@ This appendix is <em>informative</em>.
19991999

20002000
<h3 id="changes-since-2024-03-28">
20012001
Changes from <a href="https://www.w3.org/TR/2024/CRD-css-view-transitions-1-20240328/">2024-03-28 Candidate Recommendation Draft</a>
2002+
* Always flush the queue of update callbacks before capturing the old state. See <a href="https://github.com/w3c/csswg-drafts/issues/11292">issue 11922</a>.
2003+
* Disallow <css>match-element</css> as a custom-ident. See <a href="https://github.com/w3c/csswg-drafts/issues/10995">Issue 10995</a>.
20022004
* Add a non-normative note to explain that ''::view-transition-image-pair()'' would typically not need custom styling. See <a href="https://github.com/w3c/csswg-drafts/issues/11926#issuecomment-2916977161">issue 11926</a>
2005+
* Inherit more animation properties into pseudo-element tree. See <a href="https://github.com/w3c/csswg-drafts/issues/11546">Issue 11546</a>.
2006+
* Use `position: absolute` instead of `position: fixed` on ''::view-transition''. See <a href="https://github.com/w3c/csswg-drafts/issues/12116">Issue 12116</a>.
20032007
20042008
<h3 id="changes-since-2023-05-30">
20052009
Changes from <a href="https://www.w3.org/TR/2023/WD-css-view-transitions-1-20230530/">2023-05-30 Working Draft</a>
@@ -2029,8 +2033,6 @@ Changes from <a href="https://www.w3.org/TR/2023/WD-css-view-transitions-1-20230
20292033
* Fix scoping to match name instead of element. See <a href="https://github.com/w3c/csswg-drafts/issues/10145">issue 10145</a>.
20302034
* Add a rendering characteristics note about out-of-viewport elements. See <a href="https://github.com/w3c/csswg-drafts/issues/8282">issue 8282</a>.
20312035
* Swap the order of invoking the update callback and setting the phase. See <a href="https://github.com/w3c/csswg-drafts/issues/10822">issue 10822</a>.
2032-
* Always flush the queue of update callbacks before capturing the old state. See <a href="https://github.com/w3c/csswg-drafts/issues/11292">issue 11922</a>.
2033-
* Disallow <css>match-element</css> as a custom-ident. See <a href="https://github.com/w3c/csswg-drafts/issues/10995">Issue 10995</a>.
20342036

20352037
<h3 id="changes-since-2023-05-25">
20362038
Changes from <a href="https://www.w3.org/TR/2023/WD-css-view-transitions-1-20230525/">2023-05-25 Working Draft</a>

0 commit comments

Comments
 (0)