blob: b52206ab04900b1040e38cf6290c4e3a9277e38d [file] [log] [blame]
<html>
<head>
<style>
div {
text-transform: uppercase;
}
div:first-letter {
text-transform: uppercase;
}
p::before {
content: "This text should be uppercase.";
text-transform: uppercase;
}
</style>
</head>
<body>
<div>This text should be uppercase.</div>
<p></p>