mirror of
https://github.com/servo/servo
synced 2026-05-09 00:22:16 +02:00
18 lines
325 B
HTML
18 lines
325 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style type="text/css">
|
|
p:before {
|
|
content: "A";
|
|
}
|
|
.big {
|
|
font-size: 128px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="color: red; font-size: 64px;">
|
|
<p style="color: green;" class="big">B</p>
|
|
</body>
|
|
</html>
|