1
0
Fork 0
firefox/testing/web-platform/tests/css/css-values/calc-offsets-relative-left-1-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
548 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>CSS Reference: Test for left:calc() on relatively positioned elements</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<style type="text/css">
body { margin: 0 100px; width: 100px }
div[style] { background: blue; position: relative; height: 3px; }
</style>
</head>
<body>
<div style="left: 50px"></div>
<div style="left: -50px"></div>
<div style="left: 75px"></div>
<div style="left: -45px"></div>
<div style="left: 40px"></div>
<div style="left: -30px"></div>
</body>
</html>