back
Code
CSS
HTML
Web
body{
counter-reset: theCount;
}

p{
counter-increment: theCount 3;
}

#p316::after{
content:counter(theCount);
}