I have an html table which been generated by fpdf lib. I've tried align text in TD but i cant. Any of this options won't work: set inline align=center inline styles style="text-align: center;"
it looks something like that:
$html = "... do some html.."
then
$html .="<tr .....
foreach ( ...//
$html .= "<td align="right... or style="text-align: right..
then:
$this->WriteHTML( $html );
Some attributes works, like bgcolor, but align, unfortunately - not. How can i align right text in my td items?