Quote:
Originally Posted by Joques
Murg, is there an easy way to add text/graphics/asterisks to scene breaks using CSS? I'm guessing no, or it would have been mentioned already 
|
Yes there is. I don't know how well supported it is but you can use the ::before pseudo element and content property
Code:
p.scene-break::before
{
content: "***";
display: block;
text-align: center
}
p.scene-break { text-indent:0 }
Content can be an img url. No html though. I haven't actually tried this so I don't know if it is correct or how well it is supported.
This seems like /a/ correct and elegant way to do this to me.