servo/tests/ref/pseudo_inherit.html
2014-09-08 20:21:42 -06:00

17 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>