For what it is worth this is what I do:
- in the stylesheet: .centre { text-indent: 0; text-align: center; }
- in the HTML: <p class="centre">*</p>
The reason for the text-indent: 0; is that I have paragraphs set to be indented, and if I don't remove the indent they won't be centred.
|