5 回答
TA贡献1830条经验 获得超9个赞
你可以通过多种方式解决它
使用
button.btn {....}
这个button {....}
应该可以解决你的问题。使用
selector
按钮的类,然后分配属性(这就是我所做的)。
#cssBtn {
padding-top: 200px;
background-color: #388E3C;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" />
<div class="container">
<div class="row">
<div class="col-lg-6" id="function2">
<div class="input-group" id="input">
<div class="custom-file">
<input type="file" class="custom-file-input" id="inputGroupFile01" aria-describedby="inputGroupFileAddon01">
<label class="custom-file-label" for="inputGroupFile01">Choose your p12 file...</label>
</div>
</div>
<button type="button" id="cssBtn" class="btn btn-primary btn-lg btn-block">Convert p12 to jks</button>
<!-- This is the button! -->
</div>
</div>
TA贡献1853条经验 获得超18个赞
这绝对是一个特殊性问题
您仅针对button元素,这不像类那么具体,这就是您的样式不适用并且被引导程序的类覆盖的原因。
将您自己的类添加到按钮以应用您的样式,或者定位按钮 + 引导类。
我建议不要使用!important,这并不是真的必要
button.btn {
padding-top: 200px;
background-color: #388E3C;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" />
<div class="container">
<div class="row">
<div class="col-lg-6" id="function2">
<div class="input-group" id="input">
<div class="custom-file">
<input type="file" class="custom-file-input" id="inputGroupFile01" aria-describedby="inputGroupFileAddon01">
<label class="custom-file-label" for="inputGroupFile01">Choose your p12 file...</label>
</div>
</div>
<button type="button" class="btn btn-primary btn-lg btn-block">Convert p12 to jks</button>
<!-- This is the button! -->
</div>
</div>
TA贡献1865条经验 获得超7个赞
Boostrap 的 CSS 文件很可能会覆盖您的 CSS 文件,请确保在 Boostrap 文件之后加载 CSS 文件。您最好为按钮分配一个自定义类
<button id="customButton" type="button" class="btn btn-primary btn-lg btn-block">Convert p12 to jks</button>
然后将你的 CSS 设置为
button#customButton {
padding-top: 200px;
background-color: #388E3C;
}
TA贡献1801条经验 获得超15个赞
当我将您的确切 html 和 css 复制到环境中时,对我有用,我会说这是因为您已经在按钮上附加了很多类
class="btn btn-primary btn-lg btn-block"
您可能需要编辑其中一些类,因为它们可能优先于按钮本身
最好的方法就是去做
button {
padding-top: 200px!important;
background-color: #388E3C;
}
虽然重要不是最佳实践,但这会给你答案
TA贡献1805条经验 获得超10个赞
如果您只需要绿色按钮,则添加btn btn-success而不是btn btn-primary
<div class="container">
<div class="row">
<div class="col-lg-6" id="function2">
<div class="input-group" id="input">
<div class="custom-file">
<input type="file" class="custom-file-input" id="inputGroupFile01"
aria-describedby="inputGroupFileAddon01">
<label class="custom-file-label" for="inputGroupFile01">Choose your p12 file...</label>
</div>
</div>
<button type="button" class="btn btn-success btn-lg btn-block">Convert p12 to jks</button> <!-- This is the button! -->
</div>
</div>
- 5 回答
- 0 关注
- 151 浏览
添加回答
举报