Re: [css-d] CSS linear gradient in Android tablet not extending to bottom of page

2013-01-29 Thread Gautam Sathe
On 01/29/2013 07:52 AM, Debbie Campbell wrote: In my 10 Android tablet in landscape view, the CSS3 background  gradient doesn't stretch to the bottom of the page, it only fills the  browser window. If you have to scroll down, the background is white  below the original window. Can someone

Re: [css-d] Web Dev Toolbar debugging hiccup

2016-08-04 Thread Gautam Sathe
Hard to say without knowing what else might be going on for you. I just checked on my system, I am able to view up to 1680px width without facing any issues. #1. The most obvious question - is your system actually high res enough to view a 12xx pixel screen? #2. Have you put the chrome dev

Re: [css-d] td:nth-child(2) negation?

2017-08-03 Thread Gautam Sathe
should not apply. I could have misunderstood his requirement of course - in which case the code I sent last time would also be invalid. Cheers -- Gautam Sathe __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org

Re: [css-d] td:nth-child(2) negation?

2017-08-03 Thread Gautam Sathe
On Thursday 03 August 2017 02:12 PM, Philippe Wittenbergh wrote: td:not([colspan=2]):nth-child(2) {} I missed the "=2" in the colspan :) Good to learn a new trick. Thanks Philippe. -- Gautam Sathe __ css-disc

Re: [css-d] td:nth-child(2) negation?

2017-07-28 Thread Gautam Sathe
lor: green; } td[colspan]:not(:nth-child(2)) { background-color: black; } Personally, I would not code such complex rules into CSS, I believe a templating engine which applies logic at the server level would be a saner choice. What is the use case? Regards