我试图在标题左侧大小中添加信息“i”按钮。
我做了但按钮看起来非常小而且不在标题高度的中心。 这是标题的代码:
<div data-role="header" data-position="fixed">
<a href="#" data-role="button" data-icon="info" data-iconpos="notext"></a>
<div>
<h2 style="text-align: center">something written here</h2>
</div>
</div><!-- /header -->
我想放大信息“i”按钮,并将其放在标题行高度的左侧和中心。我怎么能这样做?
由于
答案 0 :(得分:1)
以下是正确的语法
删除h2周围的div,它会弄乱jquery css。
尝试将h2更改为h1。因此按钮将位于听者身高的中心。
尝试给出按钮类... class =“ui-btn-left”
<div data-role="header" data-position="inline">
<a href="index.html" data-icon="delete" class="ui-btn-left" >Button Left</a>
<h1>Edit Contact</h1>
<a href="index.html" data-icon="check" class="ui-btn-right" >Button Right</a>
</div>
答案 1 :(得分:0)
直播示例:
JS:
// For all buttons use something like this
$('.ui-btn').css('width','50%');
// For individual buttons use something like this
$('#theButton1').parent().css('width', '75%');
// Or this for HREF data-role buttons
$('#hrefButton4').css('width', '45%');
更新:(我认为这正是你要找的)
// this changes the height for all buttons
$('.ui-btn-text').css('font-size','50px');
// This changes the height for a single element
$('#hrefButton3').children().children().css('font-size','30px');
HTML:
<div data-role="page" id="home">
<div data-role="content">
<input type="button" id="theButton1" value="Press Me 1" />
<input type="button" id="theButton2" value="Press Me 2" />
<input type="button" id="theButton3" value="Press Me 3" />
<input type="button" id="theButton4" value="Press Me 4" />
<br />
<a href="#" data-role="button" id="hrefButton1">HREF Me 1</a>
<a href="#" data-role="button" id="hrefButton2">HREF Me 2</a>
<a href="#" data-role="button" id="hrefButton3">HREF Me 3</a>
<a href="#" data-role="button" id="hrefButton4">HREF Me 4</a>
</div>
</div>