我正在尝试使用 Jquery Mobile 1.2 创建一个自定义按钮。我的按钮显示,但使用现有的自定义圆角默认按钮。我需要按钮来显示这样的。 http://i.imgur.com/RFeeQ.png
#homepage .my-button {
background-image: url('../images/icons/btn_panel.png') !important;
width:307px;
height:50px;
padding-top:0px auto;
}
#homepage .ui-icon-about-icon {
border-radius:0px;
background-image: url('../images/icons/about_up.png');
background-color: rgba(0, 0, 0, 0);
width:36px;
height: 36px;
}
<div data-role="content" class="content">
<a href="about.html" data-transition="fade" data-role="button" data-icon="about-icon" data-iconshadow="false" class="my-button">About</a>
</div>