On 05/06/07, Michael Stevens <[EMAIL PROTECTED]> wrote:
> border= in HTML should equal border: in CSS. I understand they are different
> but to make them inconsistent would be one reason why people have a hard
> time with the "CSS or die" theory of late.
There would have been two problems with tak
On 6/5/07, Michael Stevens <[EMAIL PROTECTED]> wrote:
> Well, I understand you are right, and did from the start because I've
> experienced it myself (even though my argument's logic failed), but I still
> say it's an inconsistency. :)
>
> border= in HTML should equal border: in CSS. I understand t
nt would be one reason why people have a hard
time with the "CSS or die" theory of late.
Mike
-Original Message-
From: Mauricio Samy Silva [mailto:[EMAIL PROTECTED]
Sent: Monday, June 04, 2007 4:06 PM
To: [EMAIL PROTECTED]; css-d@lists.css-discuss.org
Subject: Re: [css-d] table cl
istency in the application of a border to a table.
Mike
-Original Message-----
From: Mauricio Samy Silva [mailto:[EMAIL PROTECTED]
Sent: Monday, June 04, 2007 2:09 PM
To: [EMAIL PROTECTED]; css-d@lists.css-discuss.org
Subject: Re: [css-d] table class
Hi Mike,
Because it's not a cascade is
o:[EMAIL PROTECTED]
Sent: Monday, June 04, 2007 2:09 PM
To: [EMAIL PROTECTED]; css-d@lists.css-discuss.org
Subject: Re: [css-d] table class
Hi Mike,
Because it's not a cascade issue.[1]
It's an inheritance issue.[2]
The CSS property border isn't an inherited property or in other wor
EC-CSS2/cascade.html#inheritance
MaurĂcio Samy Silva
http://www.maujor.com/
- Original Message -
From: "Michael Stevens" <[EMAIL PROTECTED]>
To:
Sent: Monday, June 04, 2007 8:36 PM
Subject: Re: [css-d] table class
> Hi Ross,
> There is a 'equal sign' missed in
Hi Ross,
There is a 'equal sign' missed in your HTML code:
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;
}
--
Why doesn't
From: "Edinburgh Nights" <[EMAIL PROTECTED]>
>I usually add id but I have a series of tables I want to apply the same
>class to
>
--
Hi Ross,
There is a 'equal sign' missed in your HTML code:
In case the missed sign was a typo and you want a bord
Edinburgh Nights wrote:
> I usually add id but I have a series of tables I want to apply the same class
> to
>
>
>
If you actually wrote it this way in your page, then there's your
problem. Try
>
> this doesn't work
>
> .signup_table {
> border-collapse:collapse;
> border:1px solid green