Change record status: 
Project: 
Introduced in branch: 
7.x-5.x
Introduced in version: 
7.x-5.2
Description: 

The height of responsive images doesn't adjust properly in IE8.

If you are supporting IE8 in your theme you should add the width: auto; property to the img {} ruleset found in the normalize.css/normalize.scss file.

Before:

img {
  max-width: 100%;
  height: auto;
}

After:

img {
  max-width: 100%;
  width: auto;
  height: auto;
}
Impacts: 
Site builders, administrators, editors
Themers
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done