At 03:12 PM 1/23/2006, Paul Kahl wrote:
>I'm constantly freaking out about reusability. I'm
>writing my first ASP.Net aps, and .Net code is heavy enough without having
>to load a 50k stylesheet on top of it.
Hmm, if your stylesheet is 50K that could indicate a problem in
itself. I would try to
On Jan 23, 2006, at 3:12 PM, Paul Kahl wrote:
> Thanks for the input. I'm constantly freaking out about reusability.
> I'm writing my first ASP.Net aps, and .Net code is heavy enough
> without having to load a 50k stylesheet on top of it. I try to just
> multi-class tags, but sometimes that gets
d see if it's a
workable solution.
Paul Kahl
Web Developer
"An object at rest cannot be stopped!"
-Original Message-
From: Matthew Levine [mailto:[EMAIL PROTECTED]
Sent: Monday, January 23, 2006 2:50 PM
To: Paul Kahl
Cc: css-d@lists.css-discuss.org
Subject: Re: [css-d]
On Jan 23, 2006, at 4:37 PM, Paul Kahl wrote:
> Is it possilble to do something like this:
>
> .clsBold {font-weight: bold;}
> .clsItalic {font-style: italic;}
> .clsRed {color: #F00;}
>
> .clsTitleDiv {clsBold; clsItalic; clsRed;}
>
> In other words, can I call a previously defined class inside
Is it possilble to do something like this:
.clsBold {font-weight: bold;}
.clsItalic {font-style: italic;}
.clsRed {color: #F00;}
.clsTitleDiv {clsBold; clsItalic; clsRed;}
In other words, can I call a previously defined class inside another class,
in some fashion, thus saving me time and code?