html - How to specify number of colums in table -
i have table set below:
<table border="0"> <tbody> <tr> <td>*item one*</td> <td>*item two*</td> <td>*item three*</td> <td>*item four*</td> </tr> <tr> <td>*item one*</td> <td>*item two*</td> etc.....
i wanting items appear in 4 colums are. however, when want re-arrange items becomes tedious copying , pasting them <tr>
need , bumping forward.
how can make write
<table border="0"> <tbody> <td>*item one*</td> <td>*item two*</td> <td>*item three*</td> <td>*item four*</td> <td>*item one*</td> <td>*item two*</td> etc.....
and automatically appear in columns of 4 - add item - other items shift on or next rows needed?
thanks!
basically, can use css
this. check out fiddle demonstrates.
Comments
Post a Comment