内部文本标题中按钮的大小与内部图标大小不同。为什么?

时间:2014-03-12 16:49:14

标签: javascript jquery jquery-mobile

我的话题中都说了一切。谢谢。链接到我的网站:site

enter image description here

HTML:

<div id="header" data-role="header" data-theme="a">
    <div class="ui-btn-right" data-role="controlgroup" data-type="horizontal"> <a href="/{$country}/{$lang}/1_reseni-pro-prumyslovou-a-procesni-automatizaci-kvalitu-a-it.html" data-role="button" data-icon="home" data-inline="true" data-theme="b" data-iconpos="notext">Home</a>  <a id="menu" href="#" data-role="button" data-inline="true" data-icon="grid" data-theme="b" data-iconpos="notext">Menu</a>
 <a id="globe_menu" href="#" data-role="button" data-inline="true" data-theme="b"><img align="left" src="/css/globe_white.png"/></a>
 <a style="padding-bottom: 1px;" id="lang_menu" href="#" data-role="button" data-inline="true" data-theme="b"><b>EN</b></a>
 <a id="search_menu" href="#" data-role="button" data-inline="true" data-icon="search" data-theme="b" data-iconpos="notext">Search</a>

    </div>
    <div id="center_logo" style="margin-left: 5px; margin-right: 10px; width: 150px;">
        <img border="0" src="/images/logo_ats.png" alt="ATS Logo" />
    </div>
    <div style="min-height: 15px;"></div>
</div>

1 个答案:

答案 0 :(得分:2)

语言按钮中有填充样式,替换

<a style="padding-bottom: 1px;" id="lang_menu" href="#" data-role="button" data-inline="true" data-theme="b"><b>EN</b></a> 

用这个

 <a id="lang_menu" href="#" data-role="button" data-inline="true" data-theme="b"><b>EN</b></a>

(我删除了填充)

我检查了一个小提琴,这样就达到了正确的高度。