blob: fd00950f132b75cca16aa98337372a83bdec721a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<style>
span:before { content: '"'; }
span:after { content: '"'; }
:after { border: 3px solid green; }
:first-letter { color: green; }
</style>
</head>
<body>
<p><span>Foo</span></p>
<p id="p2"><span id="q2"></span></p>
</body>
</html>
|