Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Anchor Positioning Reference: Resolve anchor() and anchor-size() when the anchor element is an inline element with block children</title>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="stylesheet" href="/fonts/ahem.css">
<style>
.rel {
position: relative;
background: lightgray;
}
.target {
display: block;
width: 11em;
height: 3em;
background: green;
}
</style>
<div style="font: 20px/1 Ahem; width: 11em">
<div class="rel">Lorem ipsum
<span class="target"></span>
</div>
</div>