以下 html&css 在 chrome 中运行良好,但在 Firefox 上未对齐
<div class="btns">
<div id="green">
<span id="cls" class="btn btn-block btn-large btn-success disabled green_btn">Green</span>
</div>
<div id="red">
<form class="button_to" >
<div>
<input class="btn btn-block btn-large btn-danger red_btn" type="submit" value="Red">
</div>
</form>
</div>
</div>
css
#cls:hover {
background:black;
cursor:pointer;
}
.btns {
position: relative;
}
.num {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
}
#green, #red {
display: inline-block;
width: 49%;
position: relative;
}
.green_btn, .red_btn {
margin-bottom: 4px;
}
这是jsfiddle
我不明白为什么它们在 Firefox 中没有对齐,但在 chrome 中它们很好。