I am trying to center a paragraph tag with some text in it within a div, but I can\'t seem to center it using margin: 0 auto without having to specify a fixed width for the
Try this using inline CSS:
<p style="text-align: center;">Lorem ipsum dolor sit amet</p>
Or using just HTML
<p align="center">Lorem ipsum dolor sit amet</p>
here a nice workaround for centering a div with no width.
is tableless and is working in any browser!