我的应用程序就像Android上的魅力一样。 我使用以下概念在Android App中显示图像。
<img class="myClass"/>
.myClass{
content:url('test.png');
}
它在Android上正常运行。 但Windows上的Same App并没有显示任何内容。 背景图像正确显示,但其他图像不会显示在Windows应用程序上。
任何人都可以帮忙吗?
答案 0 :(得分:0)
我相信他们在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;
}