Hi i recently started learning and using xhtml and css instead tables. But there's one thing i can't figure out, how is the easiest way to make 3 columns where the right and left one has for example 200px static and the middle one has the rest of width. I saw one solution but it used many classes, and guy made left and right margin like 200 px of the middle column, and then put left and right column on those margins. Is there easiest way like:
| Code: |
| <table style="width:100%">
<tr> <td style="width:200px"> left </td><td> mid // will take the rest of width </td><td style="width:200px"> right </td> </tr> </table> |
