On Tue, Mar 19, 2013 at 12:17 PM, Mike <m...@integrawebdesign.co.uk> wrote:

> Hi guys,
>
> I hope someone can help with a little problem. A new website I am
> designing looks perfect in Firefox 18 on Linux and in Safari. But it's not
> right in Opera on Linux, Chrome on Windows and probably several others. URL
> - www.integra-server.co.uk/lnp/**wb/
> <http://www.integra-server.co.uk/lnp/wb/>


On my windows desktop computer it looks ok in Chrome but not in IE 9.

Could it be something to do with how different browsers interpret the box
model? (some count the padding as part of the width and some don't). If
floated content is too wide for the container it gets pushed down.

Someone helped me with this issue on here recently and gave me this code to
put in the css to fix it.

* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }

Regards,
Laura
______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to