[css-d] html html

2009-05-06 Thread Vincent Pollard
I'm having problems with iFrames. I wondered if anyone could help. I have html { overflow-y: scroll; } To stop the page shifting around in Firefox/ IE8 And am trying to override the iFrames' scrollbars with: html #IDNameofIFrame html {

Re: [css-d] html html

2009-05-06 Thread Gunlaug Sørtun
Vincent Pollard wrote: html #IDNameofIFrame html { overflow-y: auto !important; } It is legal in css2.1 to write html html like this? Legal, yes, but such a selector chain doesn't point to any element since there's no 'html' element inside 'html'. Selector chains can only express parent --