Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<title>Borders should not affect snapshot position</title>
<style>
* {
box-sizing: content-box;
}
html {
view-transition-name: none;
}
body {
margin: 0;
}
div {
position: absolute;
}
.inline {
view-transition-name: parent;
border: 10px solid black;
background: green;
padding: 12px;
position: relative;
left: 100px;
top: 40px;
}
</style>
<body>
<span class="inline">
ABC
</span>
</body>