Is it possible to use just one ID Selector for several tables with different
IDs?
I have 4 tables that needs the same appearance. I know that I can use
something like #*rep, but can I use something like table#rep* ? Reading the
CSS 2.1 specifications I could not find anything like that.
TIA,
Erik Cruz
It sounds like you could make them all use the same class.
.tableformat1{...}
<table id='uniquevalue' class='tableformat1'...
Mike