如何删除 jQuery 移动导航图标的圆形容器?

How do I remove the circular container for my jQuery Mobile nav icons?

如何删除自定义图标周围的圆形容器?

我正在使用 jQuery 手机,我已经用 ui-nodisc-icon class 删除了背景。但是我的图标仍然被裁剪成一个圆圈。在大多数情况下,它们是方形图标。

尝试将 border-radius css 属性 设置为 0px;将此行添加到您的 css.

.ui-nodisc-icon{
    border-radius:0px !important
}