I recently saw this in an ebook built by someone in Sigil:
CSS:
Code:
p.centered
{
text-indent: 0em;
text-align: center;
display:inline-block;
}
.wrap
{
text-align: center;
}
HTML:
Code:
<div class="wrap">
<p class="centered">THE END</p>
</div>
Isn't putting centered text in a centered box redundant? What is the rationale behind this?