我希望标题中的按钮是圆形的,但它们却是方形的。查看屏幕截图中的主页按钮:
我的 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>
...
我期待看到类似于这些的圆形按钮:
任何指针表示赞赏...