How to indent the table after a line in html
Need to align the table little right
If i use align = right then it is moving far right
I need it to move little right
(Body html to send email)
Basically
The table should be intended
@Demo_User In the table tag, you can add a margin-left
style attribute like this:
<table style="margin-left: 100px">
...
</table>
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.