I wanted to know if I customize a table with <td> and <tr> elements in the same way I usually customize <div> elements of a page.
I’m asking this because I cannot modify the generated html code, and I would like for example to float the rows to right, or to add padding, margin.
Is CSS working perfectly on <tr> or <td> elements ? (I am asking you this before to start).
thanks
Yes, you can apply css to any element. By the way, you can choose the direction of TDs by specifying
align="left"oralign="right". No need to float them. You could have provided sample of what you want to achieve though.