mirror of
https://github.com/servo/servo.git
synced 2025-08-02 20:20:14 +01:00
19 lines
353 B
HTML
19 lines
353 B
HTML
<head>
|
|
<!-- Tests that the entire border-box is shadowed, not just the content box. -->
|
|
<style>
|
|
section {
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 100px;
|
|
top: 100px;
|
|
left: 100px;
|
|
border-left: solid green 10px;
|
|
border-right: solid green 10px;
|
|
box-shadow: 20px 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section></section>
|
|
</body>
|
|
|