问题描述
我是第一次实现jQuery Mobile,并且很难更改网站主体的背景颜色.您可以在此处查看源代码,而不必在此处发布所有HTML和CSS(因为它很长): http://www.tommaxwell.me
I'm implementing jQuery Mobile for the first time and am having a hard time changing the background color of my site's body. Instead of posting all of the HTML and CSS here (because it's long), you can look at the source here: http://www.tommaxwell.me
我尝试将其添加到桌面媒体查询中,将其添加到任何媒体查询之外的网站正文中,并且没有任何运气.这很奇怪,但是我以前从未使用过jQuery Mobile.
I've tried adding it to the desktop media query, the body of the site outside of any media queries, and no luck. This is weird, but I've never used jQuery Mobile before.
推荐答案
在siteredesign.css中更改此CSS属性(确保它覆盖jquery.mobile.css):
Change this css properties in your siteredesign.css(make sure it overrides jquery.mobile.css):
.ui-body-c,.ui-overlay-c {背景:#000; }
.ui-body-c, .ui-overlay-c { background:#000; }
这篇关于无法更改jQuery Mobile背景颜色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!