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.
18 lines
219 B
HTML
18 lines
219 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
section {
|
|
position: absolute;
|
|
top: 40px;
|
|
left: 40px;
|
|
width: 200px;
|
|
height: 200px;
|
|
border: solid 10px green;
|
|
}
|
|
</style>
|
|
<body>
|
|
<section></section>
|
|
</body>
|
|
</html>
|
|
|
|
|