我正在尝试获取自定义jQuery移动导航栏图标,但它无效。我知道之前已经问过这个问题,我认为我做得对,有人可以查看我的代码,看看他们是否能看到问题。
.ui-icon-directions {
background-image:url("http://c9.io/mbochicchio/tradingpost/workspace/img/mobilephotos/directions.png") 50% 50% no-repeat;
background-size: 20px 20px;
box-shadow: none;
-webkit-box-shadow: none;
margin: 0 !important;
}
答案 0 :(得分:1)
在jQM 1.4.x中,背景图像应用于:after伪选择器:
.ui-icon-directions:after {
background-image:url("http://c9.io/mbochicchio/tradingpost/workspace/img/mobilephotos/directions.png");
}
以下是您更新的 FIDDLE