Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!Doctype html>
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>CSS Test: </title>
        <style type="text/css">
            div:before
            {
                counter-increment: c 1;
                content: inherit;
            }
            div:after
            {
                content: counter(c);
            }
            div
            {
                content: counter(c);
            }
            body
            {
                counter-reset: c 3;
            }
            p:after
            {
                content: inherit;
            }
            pre
            {
                border: solid blue;
                font: inherit;
            }
        </style>
    </head>
    <body>
        <p>Test passes if the three rows of numbers below match the 3 rows of numbers in the blue box.</p>
        <div>a</div>
        <div>a</div>
        <div>a<p>b</p></div>
<pre>
434
545
656
</pre>
    </body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers