1
0
Fork 0
firefox/testing/web-platform/tests/css/css-view-transitions/inline-with-offset-from-containing-block-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

27 lines
539 B
HTML

<!DOCTYPE html>
<html>
<title>View transitions: inline with offset from containing block (ref)</title>
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
<link rel="author" href="mailto:khushalsagar@chromium.org">
<style>
.outer {
transform: scale3d(2, 2, 1);
width: 100vw;
text-align: center;
}
.inner {
transform: translate(10px);
padding: 10px;
border: 10px solid black;
}
body {
background: pink;
}
</style>
<div class="outer">
<a class="inner">Some text</a>
</div>