1
0
Fork 0
firefox/testing/web-platform/tests/css/css-overflow/overflow-clip-margin-border-radius-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

21 lines
420 B
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference: overflow-clip-margin with border-radius</title>
<link rel="author" title="Oriol Brufau" href="obrufau@igalia.com">
<style>
#outer {
width: 50px;
height: 50px;
border-radius: 25px;
box-shadow: black 0 0 0 100px;
margin: 125px;
}
#inner {
width: 50px;
height: 50px;
background: black;
}
</style>
<div id="outer">
<div id="inner"></div>
</div>