我如何仅继承引导程序预定义类的少数几个属性?

时间:2019-04-22 07:44:31

标签: css css3 twitter-bootstrap-3 bootstrap-4

我添加了一个引导类,我想删除背景色并为预定义类添加不透明度。 是否有可以轻松实现的功能?

<div class="btn-group ">
<a class="btn btn-sm btn-primary dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-info-circle"></i>
</a>
<div class="dropdown-menu dropdown-menu-right">
<ul>
<li class="dropdown-item"><a class="btn btn-sm btn-primary" title="Update patient info">Phone-Number</a></li>
<li class="dropdown-item"><a class="btn btn-sm btn-primary"title="Update patient info">Patients Details</a></li>
</ul>
</div>
</div>



Note:
when i inspect phone number it gives me background white color and on disabling it gives the desired result.
now, how can i add that to my internal css so that its remains like that

1 个答案:

答案 0 :(得分:0)

应用于标签ID的样式将优先于应用于类的样式。

在要设置样式的标签中添加一个ID,然后在该ID中添加CSS。如果您已经为一个类编写了样式,请向其添加ID选择器。

内联CSS也可以完成这项工作,但不建议这样做。