css - 在jquerymobile中显示一个平面按钮

时间:2013-09-26 14:01:47

标签: css jquery-mobile

我希望在jqm中有一个平面样式按钮。我尝试的是在下面,但仍然在它的底部得到一条细线。

.flat-btn,.flat-btn > .ui-btn-inner {
  border-top:0 !important;
  border-bottom:0 !important;
  border:0 !important;
  background:transparent !important;
  -webkit-border-radius:0 !important;
  border-radius:0 !important;
  text-shadow:0 !important
}
<a data-role="button" href="" class="flat-btn">text</a>

1 个答案:

答案 0 :(得分:2)

data-shadow="false"属性添加到按钮以删除阴影。

  

<强> Demo

<a data-role="button" href="#" class="flat-btn" data-shadow="false">text</a>