blob: 24c25935c248884a0f2a48408dbc400ab5a90a22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html>
<head>
<style>
span#dd:before {
display: inline;
white-space: pre;
content: "bef-\Aore";
color: gray;
}
</style>
</head>
<body>
<span id="dd">new<div id="div">div</div></span>
</body>
</html>
|