1
0
Fork 0
firefox/layout/reftests/box-shadow/boxshadow-multiple.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

17 lines
249 B
HTML

<!DOCTYPE HTML>
<style>
body {
background-color: green;
}
#thediv {
width: 300px;
height: 100px;
position: absolute;
top: 20px;
left: 20px;
box-shadow: 3px 3px red, 6px 6px blue, 9px 9px black;
}
</style>
<div id="thediv">Foo</div>