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

2015-04-07 Thread Kristian Dahlgaard
I'm having an issue with Chrome, which does not line up the 2 boxes 'section' and 'aside'. If I zoom my browser window, the space between the 2 boxes gets larger or disappears and the line up perfectly like 'nav' and 'section. I've tried to use px instead of em, but that does not change the

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

2015-04-07 Thread Ludwig Bekic
Hi Kristian, i never used calc() but i think browsers will render your boxes unpredictable if you mix borders-widths of em and widths in %. I assume that zooming then causes each browser to round widths differently. Best Ludwig On Tue, Apr 7, 2015 at 10:59 AM, Kristian Dahlgaard

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

2015-04-07 Thread John Andrews
You can avoid the calc in the section by putting the nav first in the body floated left as you have, then put the aside floated right as you have, then take the calc width of the section out and let it fit in between the left and right portions. It seems to work for me. --- John Andrews (forgot