Can the button padding be adjusted in Jquery Mobile?

怎甘沉沦 提交于 2020-01-05 11:48:49

问题


Please see the buttons on this page: http://rchobbystream.com/main.html

Is it possible to eliminate the white space around the image in each button? I have been looking for a while and I can not see where this is indicated in the CSS file.

Thank you


回答1:


Yes, it's the class is:

 .ui-btn-inner

If you use firebug you can see it very easily by hovering over it with the inspect button.

Your CSS override should look like this (padding changed to 0):

.ui-btn-inner {
    padding: 0;
}


来源:https://stackoverflow.com/questions/6670940/can-the-button-padding-be-adjusted-in-jquery-mobile

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!