如何在jQuery Mobile中的按钮内定位'data-icon'元素?

时间:2013-09-11 10:14:53

标签: html jquery-mobile

我有一个带有以下jQuery属性的div:

<div class="block" data-role="button" data-icon="home">

</div>

继续CSS:

        .block{
            height: 50px;
            width: 50px;
            float: left;
            margin: 5px;
        }

“主页”图标位于按钮的左上角。如何在按钮内调整/重新定位?

1 个答案:

答案 0 :(得分:1)

<div data-role="button" data-icon="home" data-inline="true" data-iconpos="right">

- 更新

查看实时示例here