How can I force images inside of a <table>
to fit? Images that are larger than the container stretch it out.
This CSS works in Chrome and other browsers but does not work in Firefox, what should I use?
.scaleimages img {
max-width: 100%;
height: auto;
}