标题按钮是方形而不是圆形

时间:2015-02-13 18:53:32

标签: html css jquery-mobile jquery-mobile-button

我期待标题中的按钮被舍入,但相反它们是正方形的。请参阅屏幕截图中的主页按钮:

enter image description here

我的CSS:

#main {
   text-overflow: ellipsis;
   overflow: visible;
   white-space: normal;
}
a {
    text-decoration: none;
}
.ui-header .ui-title {
    overflow: visible !important; 
}
.ui-header {
    min-height: 40px;
}

剪下html声明标题:

  <div data-role="page" id="settings">
       <div data-role="header" data-position="fixed">
          <a href="#home"  data-icon="home" data-iconpos="notext">Home</a>
          <h1>App</h1>
       </div>
       ...

我期待看到与这些按钮类似的按钮:

enter image description here

任何指示赞赏......

2 个答案:

答案 0 :(得分:0)

对于圆角,我希望有类似的东西:

#home {
border-radius: 5px;
}

不幸的是,这也是CSS的实现之间的差异,所以如果这不起作用,请提供有关您使用的工具版本的更多信息。

答案 1 :(得分:0)

问题是由于我的代码中的这一行:

$('a').buttonMarkup({ corners: false });

删除修复问题:$