<img> tags are present in <picture> elements. Images not displaying properly in IE11 is typically caused by unsupported image formats, modern CSS features, or Webflow-specific limitations that Internet Explorer 11 doesn’t recognize.
display: none when viewed in IE11. Legacy browsers might misread some flex/grid alignment rules.display: grid unless fallback styles exist.
object-fit, advanced filter, or mix-blend-mode) may not render correctly or at all in IE11.object-fit: cover, it will break in IE11. Instead, use background images on a div for compatibility.
<picture> element with <source type="image/webp">, IE11 will not fall back unless an <img> is also included as a final element.<img>, and ensure Webflow renders it properly.
src attribute is being respected.
To fix image display issues in IE11, use standard image formats (JPEG/PNG), avoid modern CSS properties, confirm interaction compatibility, and ensure fallback images are properly structured. IE11’s limited support requires simplifying styles and avoiding modern HTML/CSS features that aren't backward-compatible.