Html 用于引导自定义复选框的框阴影CSS

Html 用于引导自定义复选框的框阴影CSS,html,css,bootstrap-4,Html,Css,Bootstrap 4,我想删除单击复选框时出现的阴影。我已经选中了Bootstrap 4的自定义复选框,并对必要的内容进行了着色,但我无法找到显示框阴影的位置,这是我的代码- <div class="custom-control custom-checkbox"> <input type="checkbox" class="custom-control-input" id="customCheck1"> <label class="custom-control-label" for="c

我想删除单击复选框时出现的阴影。我已经选中了Bootstrap 4的自定义复选框,并对必要的内容进行了着色,但我无法找到显示框阴影的位置,这是我的代码-

<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="customCheck1">
<label class="custom-control-label" for="customCheck1"><h6>Change flooring - ₹ 10</h6></label>
</div>

更换地板-₹ 10

这是设置“框阴影”的样式选择器

.custom-control-input:focus~.custom-control-label::before {
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    }

您的意思是:?欢迎使用Stack Overflow u关于访问BS4
box shadow
属性,已经有几个问题了,包括上面提到的问题。这是一个链接,指向另一个问题的投票/接受答案,这可能有助于>>>这是否回答了您的问题?