blob: 38cd2e1738906d7b8486c2b24a77d77826a02f64 [file] [edit]
<!DOCTYPE html>
<html>
<head>
<style>
div::before { content: "FAIL"; display: block; width: 100px; height: 50px; background: red; }
div::BEFORE { content: "PASS"; background: green; color: green; }
div::after { content: "FAIL"; display: block; width: 100px; height: 50px; background: red; }
div::AfTEr { content: "PASS"; background: green; color: green; }
</style>
</head>
<body>
<div></div>
</body>
</html>