aboutsummaryrefslogtreecommitdiffstats
path: root/test/render/text-before-after.htm
blob: a714b53aec7d9bb6f0bab19c19a445a2792a987c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<style type="text/css">
    .test
    {
        font-size: 1em;
    }
    .test:before
    {
        content: "\007B\002A[";
        font-size: 2em;
    }
    .test:after
    {
        content: "]\002A\007D";
        font-size: 2em;
    }
</style>

<span class="test">Hello</span>