On Sun, 2009-04-12 at 14:53 -0700, trevor bayliss wrote:
>
>
>
> --- On Sun, 4/12/09, David Laakso <[email protected]> wrote:
>
> > From: David Laakso <[email protected]>
> > Subject: Re: [css-d] Condensing BORDER-xxx-STYLE
> > To: [email protected]
> > Cc: [email protected]
> > Date: Sunday, April 12, 2009, 2:01 PM
> > 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:
> > <http://www.456bereastreet.com/archive/200502/efficient_css_with_shorthand_properties/>
> >
> ------------------------------------------------------------------------
> 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 0px solid;
> BORDER-BOTTOM: #fff 5px solid;
>
>
>
>
>
>
>
> ______________________________________________________________________
> css-discuss [[email protected]]
> http://www.css-discuss.org/mailman/listinfo/css-d
> List wiki/FAQ -- http://css-discuss.incutio.com/
> List policies -- http://css-discuss.org/policies.html
> Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
combine I think is impossible, but you could share them. Here is what I
mean: since the first three are the same go like this
border-right, border-top, border-left{
#333 0px solid
}
border-bottom{
#fff 5px solid
}
______________________________________________________________________
css-discuss [[email protected]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/