Re: [css-d] CSS selector narrowing

2010-04-06 Thread Ingo
Tim Snadden schrieb am 03.04.2010 23:23 You could use a child selector for this... e.g. .container ul li { background: url(bullet.png) left 5px no-repeat; } .container div ul li { background-image: none } Note that this won't work in IE6 due to lack of support for this selector.

Re: [css-d] CSS selector narrowing

2010-04-06 Thread Tim Snadden
On 6/04/2010, at 10:39 PM, Ingo wrote: Is there a good tutorial on selectors around, that is ONE document to print (and read in spring sun)? I found either pretty basic tutorials, or ones scattered over many small pages. You could try this one http://css.maxdesign.com.au/selectutorial/

Re: [css-d] CSS selector narrowing

2010-04-04 Thread Paul Novitski
On 4/04/2010, at 8:05 AM, Ingo wrote: Is there a way to select first-level ul li only? I ask for the first selector here: # specific whitlist .container ul li, # make it first level only (don't select if wrapped) At 4/3/2010 02:23 PM, Tim Snadden wrote: You could use a child

[css-d] CSS selector narrowing

2010-04-03 Thread Ingo
Hi all, I have several unordered list types coming out of a CMS. For some lists, I want to define a new bullet. Most lists are wrapped with a div, unfortunately the most common (RTE output) is not. I hope there is a white list scenario, where I can select only those lists I wanna give

Re: [css-d] CSS selector narrowing

2010-04-03 Thread Tim Snadden
On 4/04/2010, at 8:05 AM, Ingo wrote: Hi all, I have several unordered list types coming out of a CMS. For some lists, I want to define a new bullet. Most lists are wrapped with a div, unfortunately the most common (RTE output) is not. I hope there is a white list scenario, where I can