Quote:
Originally Posted by Brett Merkey
Yes, it is possible to use CSS to insert text into content. Use a pseudo-element.
Example:
Then insert <p class="scenebreak"></p> in the desired place.
|
To make your code more semantic, you should use <hr/>. The
hr element is meant for scene breaks.
Code:
hr.scenebreak:before {
content: "* * * ";
}