table-layout: fixed

< IE10 and Firefox ignore max-width on images (or other elements) inside display: table-cell.

HTML

<div class="frame">
    
        <img src="http://lorempixel.com/250/250" />
    
    
        <img src="http://lorempixel.com/250/200" />
    
  
        <img src="http://lorempixel.com/250/100" />
  
</div>

CSS

.frame {
    display: table;
    max-width: 100px;
}

img {
    width: 100% !important;
    
}