I'm not sure, but I think it should be "text-align: center", not just "align: center" - at least that's what I always see in all the epubs I've opened, and so it's what I use myself. And that info should be put in an external stylesheet, like this:
p.whatever {text-align: center; line-height: 100%; etc...}
and then in your text just:
<p class="whatever">...</p>
|