css – 在引导模式窗口中更改关闭按钮的颜色

前端之家收集整理的这篇文章主要介绍了css – 在引导模式窗口中更改关闭按钮的颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用模态窗口与boostrap.我已经改变了背景和字体颜色,但是我没有成功地将右上角的关闭按钮更改为白色.
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true" class="modal_button">&times;</span><span class="sr-only">Close</span></button>

这是我的css属性

.modal-header {
  border-top: 1px solid white;
  border-left: 1px solid white;
  border-right: 1px solid white;
  text-align: left;
  font-size: 23px;
  color: white;
  background-color: #261f31;
  border-bottom: 0px;
}

我想把X按钮变成白色

解决方法

Bootstrap设置如下颜色:
.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}

所以你可以用它来覆盖它:

.close {
    color: #fff; 
    opacity: 1;
}
原文链接:https://www.f2er.com/css/216839.html

猜你在找的CSS相关文章