Pringle, Ron wrote:
>>How do I layout css div's to display multi columm tablular
>>data from a database. Up until now I've used tables within an
>>asp loop, with <tr></tr> or each row and <td></td> for each column.
>>
>>
>>Ideas for a css layout would really help.
>>
>>Regards
>>Pete
>>
>>
>
>Pete-
>
>Your previous approach works just fine. Tabular data should be formatted
>using tables. Just leave the styling bits out and use CSS for those.
>
>Regards,
>Ron
>
>
>
Yeah trying to recreate tabular data with DIV is redundant. You will end
up using as many tags.
The table way...
<table>
<tr>
<td></td>
<td></td>
</tr>
</table>
The DIV way...
<div id="tabular_container">
<div id="row">
<div id="column"></div>
<div id="column"></div>
</div>
</div>
>______________________________________________________________________
>css-discuss [EMAIL PROTECTED]
>http://www.css-discuss.org/mailman/listinfo/css-d
>List wiki/FAQ -- http://css-discuss.incutio.com/
>Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
>
>
>
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/