10 lines
115 B
HTML
10 lines
115 B
HTML
<!doctype html>
|
|
<style>
|
|
div {
|
|
display: block;
|
|
}
|
|
div::before {
|
|
content: "Should appear";
|
|
}
|
|
</style>
|
|
<div></div>
|