mirror of
https://github.com/servo/servo.git
synced 2025-06-10 17:43:16 +00:00
This was making `box-shadow` not show up in many cases, in particular, but the effects were not limited to that.
22 lines
315 B
HTML
22 lines
315 B
HTML
<html>
|
|
<head>
|
|
<!-- Tests that stacking contexts display overflow. -->
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
section {
|
|
position: absolute;
|
|
z-index: 1;
|
|
width: 72px;
|
|
height: 72px;
|
|
border: solid black 2px;
|
|
font: 24px Arial;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section>CSS IS AWESOME</section>
|
|
</body>
|
|
</html>
|
|
|