My table is causing an issue by overflowing the width of its container. It displays fine in Chrome, but Firefox is giving me trouble.
If you'd like to see the site for yourself, it's available here: http://goo.gl/vkN5s
I attempted using box-sizing: border-box;
(with the -moz prefix) on the table, but there was no change in behavior (and I'm not sure why it would help). Even after removing margins from the images in the table, it still extends beyond the container by at least 20px. The table is set to a width of 100%, so theoretically it should be contained within the container. Each td has a width of 50%, which should be sufficient for accommodating the images (even with their margins).
I've looked through similar questions and recommendations mostly involve eliminating padding/margins/borders and avoiding display: block;
(which I am not currently using). However, none of these suggestions have resolved my issue. I'm running out of ideas.