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 koenvanderdr...@gmail.com wrote: Consider the following html5 and css code: snip body article ul class=test lione/li litwo/li

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 case Koen

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 p.tay...@rhul.ac.uk 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

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: !DOCTYPE html html lang=fr head meta charset=utf-8 link rel=stylesheet href=../styles/reset.css /* from http://meyerweb.com/eric/tools/css/reset/reset.css */ link rel=stylesheet

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 callib...@gmail.com 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.