twitter-bootstrap – 单击时在Bootstrap 3按钮顶部删除内部渐变

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – 单击时在Bootstrap 3按钮顶部删除内部渐变前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
用户点击按钮时,你能告诉我如何从Bootstrap 3按钮中删除渐变:如下图所示:
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,.btn:active:focus,.btn.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,.btn:focus {
  color: #333;
  text-decoration: none;
}
.btn:active,.btn.active {
  background-image: none;
  outline: 0;
  -webkit-Box-shadow: inset 0 3px 5px rgba(0,.125);
          Box-shadow: inset 0 3px 5px rgba(0,.125);
}

解决方法

在按钮的活动状态期间应用框阴影.

试试这个:

.btn:active
{
    Box-shadow:none;
}
原文链接:https://www.f2er.com/bootstrap/233894.html

猜你在找的Bootstrap相关文章