- How would you wrap text around a table with XHTML? with CSS?
- To wrap text around a table with XHTML; you would have to go in
to the table tag and write align="left" or align="right". To wrap
text around a table with CSS; you would go to the table's style rule
and add float: right or float: left.
Main