mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
22 lines
283 B
HTML
22 lines
283 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
div:before {
|
|
position: absolute;
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: red;
|
|
content: "";
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
</div>
|
|
</body>
|
|
</html>
|