Mentally Unstable Tugboat Captain
Posts: 797
Name: Chad
Location: /usr/bin/perl
|
You can't, as far as I know. Each document calls from 1 CSS document. However, if you want to create different table setups, why not just create additional tags with unique ID's? For example:
Code:
.table1 {align: left; background-color: #FF0000; border: 0}
.table2 {align: right; background-color: #E8B900; border: 3}
And then in your document, do the following:
Code:
<table class="table1">...</table>
<table class="table2">...</table>
[edit: glaring CSS error, fixed now]
__________________
He's baaaaaaaack....
|