<!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:[email protected]">
<style>
.outer {
transform: scale(2);
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>