如何修复我的图像,使其在Internet Explorer 11中显示

时间:2019-05-14 14:01:18

标签: wordpress image jpeg

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

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

1 个答案:

答案 0 :(得分:0)

对于我来说,该图像正在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;

}

用https替换http:

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