Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Positioning table Re: Positioning table

#103124
Billy
Participant

To make the text wrap you need it to:

table {
/* either */
float: left;
/* or */
float: right;
}

And then give it a margin or something to push it out from the edge. I’m not exactly sure if this’ll work (haven’t tested it), but it’s the method to get it on one side or the other.