[css-d] CSS Development General Question

2007-03-22 Thread OOzy Pal
Dears, Every time I start developing a site I start with small css file and after I am done the .css file gets bigger and out of control. I am sure that I am doing something wrong. I am sure that I am duplicating and adding items that I don't need. I mean items that can inherit their style from

Re: [css-d] CSS Development General Question

2007-03-22 Thread Robert O'Rourke
OOzy Pal wrote: Dears, Every time I start developing a site I start with small css file and after I am done the .css file gets bigger and out of control. I am sure that I am doing something wrong. I am sure that I am duplicating and adding items that I don't need. I mean items that can

Re: [css-d] CSS Development General Question

2007-03-22 Thread Bradley Wright
On 22 Mar 2007, at 10:56, Robert O'Rourke wrote: I've had similar problems in the past but there's a really useful tool that comes with the developer toolbar [1] for firefox. If you go to the CSS dropdown and click on view style information (or ctrl+shift+y) then you can click on any

Re: [css-d] CSS Development General Question

2007-03-22 Thread jeffrey morin
On 3/22/07, OOzy Pal [EMAIL PROTECTED] wrote: Dears, Every time I start developing a site I start with small css file and after I am done the .css file gets bigger and out of control. I am sure that I am doing something wrong. I am sure that I am duplicating and adding items that I don't

Re: [css-d] CSS Development General Question

2007-03-22 Thread Urb LeJeune
I am sure that I am doing something wrong. I am sure that I am duplicating and adding items that I don't need. I mean items that can inherit their style from their parent selectors. Much of the css I look at is unnecessarily bloated because the author either doesn't understand

Re: [css-d] CSS Development General Question

2007-03-22 Thread Zoe M. Gillenwater
Urb LeJeune wrote: h1 h2 h3 h4 h5 h5 { header rules} For the benefit of the newbies, I think the selector Urb meant to write is: h1, h2, h3, h4, h5, h6 Without the commas it would only select some remarkably invalid markup that most people are not likely to have. :-) Zoe -- Zoe M.

Re: [css-d] CSS Development General Question

2007-03-22 Thread Jukka K. Korpela
On Thu, 22 Mar 2007, Urb LeJeune wrote: Inheritance is a powerful concept. That's debatable, but it is certainly one of the most misunderstood concepts in Whole Wide Web. Then you only have to deal with the exceptions since everything inheritances from body, etc. No, you have completely