无法在 Cordova 应用程序中显示图像 Windows

Unable to Display images in Cordova App Windows

我的应用程序在 Android 上运行得很好。 我使用以下概念在 Android App.

中显示图像
<img class="myClass"/>

.myClass{
    content:url('test.png');
}

它在 Android 上工作正常。 但是 windows 上的 Same App 没有显示任何内容。 背景图像显示正确,但其他图像未显示在 windows 应用程序上。

有人可以帮忙吗??

我相信他们在 IE 11 中添加了它。我是这样做的:

.myClass{
    background: url('test.png') no-repeat;
    width: 33px;    /* Your image's width */
    height: 33px;   /* Your image's height */
    margin: 0;
    padding: 0;
}