Re: [css-d] Calling a class within a class

2006-01-23 Thread Paul Novitski
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

Re: [css-d] Calling a class within a class

2006-01-23 Thread Michael Hulse
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

Re: [css-d] Calling a class within a class

2006-01-23 Thread Paul Kahl
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]

Re: [css-d] Calling a class within a class

2006-01-23 Thread Matthew Levine
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

[css-d] Calling a class within a class

2006-01-23 Thread Paul Kahl
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?