我正在使用phonegap开发android应用程序但在模拟器中我的背景图像没有显示但在浏览器中它即将到来请帮助我解决我在css中犯了什么错误
在 css3 中:-
background: url('images/pw.png') top left no-repeat !important;
在图像文件夹中,我的图像存在
检查图像文件夹的位置。在您的代码中,images
文件夹应位于CSS 文件夹内。并且您的 css 中的语法是错误的。
background: url('images/pw.png') no-repeat top left !important;
|-- CSS/
|-- images/
|-- pw.png
如果 images 文件夹在CSS旁边,则使用
background: url('../images/pw.png') no-repeat top left !important;
|-- CSS/
|-- images/
|-- pw.png
尝试这个..
background: url('images/pw.png') no-repeat top left !important;