trisquel-icecat/icecat/testing/web-platform/tests/css/css-view-transitions/auto-name-ref.html
2025-10-06 02:35:48 -06:00

35 lines
No EOL
475 B
HTML

<!DOCTYPE html>
<html>
<title>View transitions: using auto names</title>
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-2/">
<style>
body {
background: rebeccapurple;
}
div {
width: 100px;
height: 100px;
}
main {
display: flex;
flex-direction: row;
position: relative;
top: 50px;
}
.item1 {
background: green;
}
.item2 {
background: yellow;
}
</style>
<main>
<div class="item1"></div>
<div class="item2"></div>
</main>
</body>