How would you wrap text around a table with XHTML? with CSS?
In the table tag type align="left" to have the text wrap to the right or align="right" to have text wrap to the left. In CSS use float:right or float:left on the table rule.
Back to Main