Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<title>View transitions: cross-document navigation with auto name</title>
<style>
@view-transition { navigation: auto; }
body {
  background: rebeccapurple;
  margin: 0;
}
#green {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 100px;
  view-transition-name: auto;
  background: green;
  contain: layout;
}
</style>
<div id="green"></div>
</html>