I have a table followed by an anchor tag. I want the anchor tag not to move to next line after the table.
What are the options?
I have a table followed by an anchor tag. I want the anchor tag not to move to next line after the table.
What are the options?
So you want the anchor to be right to the table?
Use the CSS-argument "float".
<table style="float:left"></table>
<tag></tag>