I´m using the box-sizing: border-box; element to make my boxes on my website behave the same on multiply browsers. It has worked perfectly great since I started create the website but today the box-sizing element suddenly stopped working. I´ve no clue on what´s can be the problem. Help would be much appreciated!
Here´s a link to my website: http://amazive.com As you can see, all the boxes have put the padding "outside" instead of "inside" the boxes.
This is my reset code:
* {
margin:0;
padding:0;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
Thanks, Fredrik