From: "Edinburgh Nights" <[EMAIL PROTECTED]>
>I usually add id but I have a series of tables I want to apply the same 
>class to
 > <table class"signup_table">
--------------------------------------------------
Hi Ross,
There is a 'equal sign' missed in your HTML code:
<table class="signup_table">

In case the missed sign was a typo and you want a border around ALL cells of 
the table
you must use the following CSS:

table.signup_table {
border-collapse:collapse;
}
table.signup_table tr td {
border:1px solid green;
}

Regards,

MaurĂ­cio Samy Silva
http://www.maujor.com/


______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to