Do you mean design a layout without a table? (As in using divs and CSS) Holy Grail layout. Somemore Layouts.
The simple expedient is "float". ã€ex】 html <div class="column"><p>â—‹â—‹</p></div> <div class="column"><p>â—‹â—‹</p></div> <div class="column"><p>â—‹â—‹</p></div> css .column{ width:33%; float:left; }
If you are building a table of data, then it is best to use the <table> tag, semantically speaking of course.