Issue with Navbar icon in jquery mobile

后端 未结 1 1606
忘了有多久
忘了有多久 2020-12-22 05:41

I need to add the icon for my navbar, so I have downloaded the icon from the following link,http://www.glyphish.com/, I have downloaded the free icons. then I am trying to a

相关标签:
1条回答
  • 2020-12-22 05:52

    Create custom classes and modify their background-image using :after pseudo selector.

    .ui-arrow:after {
      background-image: url(../193-location-arrow.png);
      background-size: 15px 15px;
    }
    
    .ui-location:after {
      background-image: url(../07-map-marker.png);
      background-size: 20px 20px;
    }
    

    Demo

    0 讨论(0)
提交回复
热议问题