[css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread trevor bayliss
How can I condense this CSS? Is it possible? thank you BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BORDER-BOTTOM-STYLE: none; __ css-discuss

Re: [css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread Brian Hazelton
you can take all of it out, borders by default are none so it does not need to be there in the first place On Sun, 2009-04-12 at 11:03 -0700, trevor bayliss wrote: How can I condense this CSS? Is it possible? thank you BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none;

Re: [css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread MEM
: domingo, 12 de Abril de 2009 19:03 To: css-d@lists.css-discuss.org Subject: [css-d] Condensing BORDER-xxx-STYLE How can I condense this CSS? Is it possible? thank you BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BORDER-BOTTOM

Re: [css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread David Laakso
trevor bayliss wrote: How can I condense this CSS? Is it possible? thank you BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BORDER-BOTTOM-STYLE: none; Assuming the above is in reference to this selector from the uri

Re: [css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread Brian Hazelton
sorry, I did not realize that you were referring to an image border (which by default is not none). My answer earlier is wrong for images. On Sun, 2009-04-12 at 14:38 -0400, David Laakso wrote: trevor bayliss wrote: How can I condense this CSS? Is it possible? thank you

Re: [css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread MEM
bayliss Sent: domingo, 12 de Abril de 2009 19:03 To: css-d@lists.css-discuss.org Subject: [css-d] Condensing BORDER-xxx-STYLE How can I condense this CSS? Is it possible? thank you BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none

Re: [css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread Els
trevor bayliss wrote: How can I condense this CSS? Is it possible? thank you BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BORDER-BOTTOM-STYLE: none; border-style:none; See http://www.w3.org/TR/CSS21/propidx.html for a complete list of

Re: [css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread trevor bayliss
Thank you Brian, David, Marcio, Els and Val! I got rid of the uppercase letters in the css How do I do the same for border-top-width border-bottom-width would it be: border-width: Top Right Bottom Left? __

Re: [css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread Jukka K. Korpela
trevor bayliss wrote: How do I do the same for border-top-width border-bottom-width You can't. would it be: border-width: Top Right Bottom Left? This would always set all four border widths to some value, so it would not be equivalent to the two declarations you mentioned. Is there some

Re: [css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread Jukka K. Korpela
David Laakso wrote: trevor bayliss wrote: How can I condense this CSS? Is it possible? thank you BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BORDER-BOTTOM-STYLE: none; Looks like CSS generated by Interner Explorer when saving a page.

Re: [css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread David Laakso
trevor bayliss wrote: Thank you Brian, David, Marcio, Els and Val! I got rid of the uppercase letters in the css How do I do the same for border-top-width border-bottom-width would it be: border-width: Top Right Bottom Left? Please read:

Re: [css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread trevor bayliss
--- On Sun, 4/12/09, David Laakso da...@chelseacreekstudio.com wrote: From: David Laakso da...@chelseacreekstudio.com Subject: Re: [css-d] Condensing BORDER-xxx-STYLE To: bayliss_tre...@yahoo.com Cc: css-d@lists.css-discuss.org Date: Sunday, April 12, 2009, 2:01 PM trevor bayliss wrote

Re: [css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread Brian Hazelton
On Sun, 2009-04-12 at 14:53 -0700, trevor bayliss wrote: --- On Sun, 4/12/09, David Laakso da...@chelseacreekstudio.com wrote: From: David Laakso da...@chelseacreekstudio.com Subject: Re: [css-d] Condensing BORDER-xxx-STYLE To: bayliss_tre...@yahoo.com Cc: css-d@lists.css

Re: [css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread Holly Bergevin
From: trevor bayliss bayliss_tre...@yahoo.com is it impossible to condense this code? (As the borders are different I imagine it is) Thanks: BORDER-RIGHT: #333 0px solid; BORDER-TOP: #333 0px solid; BORDER-LEFT: #333 0px solid; BORDER-BOTTOM: #fff 5px solid; If you are overriding previous

Re: [css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread Philippe Wittenbergh
On Apr 13, 2009, at 7:01 AM, Brian Hazelton wrote: Really interesting link thanks. Last question on the subject, is it impossible to condense this code? (As the borders are different I imagine it is) Thanks: BORDER-RIGHT: #333 0px solid; BORDER-TOP: #333 0px solid; BORDER-LEFT: #333

Re: [css-d] Condensing BORDER-xxx-STYLE

2009-04-12 Thread Brian Hazelton
On Mon, 2009-04-13 at 09:14 +0900, Philippe Wittenbergh wrote: On Apr 13, 2009, at 7:01 AM, Brian Hazelton wrote: Really interesting link thanks. Last question on the subject, is it impossible to condense this code? (As the borders are different I imagine it is) Thanks: