Re: [css-d] no ul list style with reset.css

2012-11-04 Thread Koen van der Drift
On Sun, Nov 4, 2012 at 9:42 AM, Beth Lee wrote: > By using the selector ".test ul", you are mistakenly targeting the ul > child of some element styled with class "test". But you want to target > the ul element that itself bears the class "test", so the proper > selector is "ul.test". Thanks, tha

Re: [css-d] no ul list style with reset.css

2012-11-04 Thread Chris F.A. Johnson
On Sun, 4 Nov 2012, Koen van der Drift wrote: Consider the following html5 and css code: /* from http://meyerweb.com/eric/tools/css/reset/reset.css */ one

Re: [css-d] no ul list style with reset.css

2012-11-04 Thread ilduca69
Il giorno 04/nov/2012, alle ore 15:52, Philip TAYLOR ha scritto: > > Beth Lee wrote: >> using the selector ".test ul", you are mistakenly targeting the ul child of >> some element styled with class "test". But you want to target the ul element >> that itself bears the class "test", so the p

Re: [css-d] no ul list style with reset.css

2012-11-04 Thread Philip TAYLOR
Beth Lee wrote: using the selector ".test ul", you are mistakenly targeting the ul child of some element styled with class "test". But you want to target the ul element that itself bears the class "test", so the proper selector is "ul.test". Well spotted, Beth : I missed that. But just in ca

Re: [css-d] no ul list style with reset.css

2012-11-04 Thread Beth Lee
On Sun, Nov 4, 2012 at 7:23 AM, Koen van der Drift wrote: > Consider the following html5 and css code: > > > > > one > two > > > >