Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Anchor Positioning Test: Resolve anchor() in inline containing block()</title>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="https://www.mozilla.org/">
<link rel="match" href="anchor-position-inline-005-ref.html">
<link rel="stylesheet" href="/fonts/ahem.css">
<style>
.rel {
position: relative;
background: lightgray;
}
.anchor {
anchor-name: --a;
color: red;
}
.target {
position: absolute;
left: anchor(--a left);
right: anchor(--a right);
top: anchor(--a top);
bottom: anchor(--a bottom);
background: green;
}
</style>
<!-- This reftest is ported from the second sub-test in
anchor-getComputedStyle-002.html -->
<div style="font: 20px/1 Ahem; width: 11em">
<div>
Lorem
<span class="rel">
ipsum <span class="anchor">dolor</span> sit
<span class="target"></span>
</span>
amet.
</div>
<div>
Lorem
<span class="rel">
ipsum dolor <span class="anchor">sit</span>
<span class="target"></span>
</span>
amet.
</div>
</div>