Click to See Complete Forum and Search --> : HTML and Right Justification


EnderX
August 3rd, 2006, 02:40 PM
I'm trying to create an html table via php, and I need to right-justify some of the data in order to make it look right. I tried leading spaces, but html just ate those. Are there any html tags specifically designed for justification purposes? Beyond that, anybody have any other suggestions that might work? Thanks in advance.

jdc2000
August 3rd, 2006, 03:53 PM
   

DanC
August 3rd, 2006, 05:55 PM
Have you tried to put align="right" in the td cell? If the data accepts p tags you can use <p align="right">data here</p>

EnderX
August 8th, 2006, 05:37 PM
Thanks for the assistance. Problem solved.