Skip to content
Open
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
11 changes: 8 additions & 3 deletions css/css-anchor-position/position-try-cascade.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,14 @@

<!-- Transitions -->
<style>
#abs_transition.move {
top: 10px !important;
transition: top 1000s steps(2, start);
#abs_transition {
top: 50px;

&.move {
top: 10px !important;
transition: top 1000s steps(2, start);
}
}
</style>
<div class=cb>
<div id=abs_transition class=abs></div>
Expand Down