Quote:
Originally Posted by rogue_ronin
On the other hand, a blank line is great for a scene-break; but I don't seem to be able to generate the content "* * *" -- or any other content.
Here's what's in the CSS now:
Code:
br.SceneBreak:after {
content:"* * *";
}
Why won't the asterisks show up when I insert a <br class="SceneBreak" /> to the xHTML?
|
I don't think <br> can have any content at all, it's an empty tag, like <hr>. And I believe it's not a block-level element, it has to be contained into a paragraph, div, or something else (it's maybe fine for you if you have a div around everything, but not for me).