如何修复我的图像以便它们在 Internet Explorer 11 中显示

How to fix my images so they show in internet explorer 11

图像不会在 Internet Explorer 10 或 11 中显示,但在较新的浏览器中会显示

https://gegen-das-vergessen-meissen.de/应该是大图,而不是黑色背景

对我来说,图像显示在 IE Edge 上并模拟 IE 10 和 11,但带有关于混合内容的警告。

可能是因为安全规则,它隐藏在您的计算机上。

您应该替换对背景图片的调用:

.elementor-155 .elementor-element.elementor-element-0a3c09b:not(.elementor-motion-effects-element-type-background), .elementor-155 .elementor-element.elementor-element-0a3c09b > .elementor-motion-effects-container > .elementor-motion-effects-layer {

    background-color: #0c0c0c;
    background-image: url("http://example.com/wp-content/uploads/2019/02/forget-me-not-316354_neu.jpg");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 100% auto;

}

将 http 替换为 https:

background-image: url("https://example.com/wp-content/uploads/2019/02/forget-me-not-316354_neu.jpg");