mirror of
https://github.com/servo/servo.git
synced 2025-06-26 18:14:34 +01:00
26 lines
424 B
HTML
26 lines
424 B
HTML
<!doctype html>
|
|
<title>CSS Test Reference</title>
|
|
<style>
|
|
body {
|
|
font-size: 30px;
|
|
}
|
|
|
|
.container {
|
|
font-size: 5px;
|
|
height: 40px;
|
|
}
|
|
|
|
.container::after {
|
|
content: "";
|
|
display: block;
|
|
border: 2px solid blue;
|
|
width: 1em;
|
|
height: 1em;
|
|
font-size: 1em;
|
|
}
|
|
</style>
|
|
<div class="container"></div>
|
|
<div class="container"></div>
|
|
<div class="container"></div>
|
|
<div class="container"></div>
|
|
<div class="container"></div>
|