Re: [css-d] how to time table on small screens

2015-05-26 Thread Chad Lundgren
Hi Eric, I like CSS Tricks's method of dealing with this issue: https://css-tricks.com/responsive-data-tables/ Thanks, Chad On Tue, May 26, 2015 at 9:30 PM, Erik Visser wrote: > Hi all, > > On the site i'am reworking for smaller screens there is a time table: > > http://www.utrechtsyogacent

Re: [css-d] White line between block content when zoom

2015-04-07 Thread Chad Lundgren
Another way to avoid calc would be to use box-sizing: border-box, which will subtract the border (and padding) from the overall width of each box. Some people argue you should apply it to everything -- http://www.paulirish.com/2012/box-sizing-border-box-ftw/ -- a view I agree with. There is still

Re: [css-d] FOUC on homepage

2015-03-20 Thread Chad Lundgren
Hi, FOUC is as good a name as any. The problem is that your slides need to be set to display: none in your CSS. This issue is happening because the JavaScript must load and be parsed before it can set the display to none. This takes just long enough for this flash. CSS, on the other hand, must all

[css-d] CSS3 Validator updated to accept rgba, hsla,etc

2012-10-19 Thread Chad Lundgren
produce incorrect errors are transitions and gradient syntax, which are both still in more flux that the color values. Thanks, Chad Lundgren __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo

Re: [css-d] Fluid layout cross-browser rendering

2011-12-13 Thread Chad Lundgren
> On Dec 13, 2011, at 2:25 PM, David Odefey wrote: >> I was hoping there was a solution that allowed me >> to keep both my percentage based widths as well as the static width >> borders. Hi David, While you may or may not need this technique for your current layout, there *is* a property that do