我在自己的按钮上添加了自定义边框。我清楚地说明了一种颜色,它适用于除Firefox以外的所有浏览器......再一次,Firefox是奇怪的。我告诉边界是#252525但它更明亮,并且在检查元素时边框颜色是正确的。是什么导致它变得更亮? 如果我将其更改为" red"它变成了非常明亮的红色。
(底部是Chrome,顶部是Firefox,IE + Edge与Chrome相同) https://gyazo.com/c32a819548a253c5502356877e7bc128
input.button {
height: 50px;
width: calc(400px / 3);
border: 0px;
float: left;
background-color: #191919;
color: #AEAEAE;
font-family: standard;
font-size: 40px;
cursor: pointer;
border-bottom: 1px solid #252525;
border-style: inset;
}

<input class="button" type="button" value="x1.5">
&#13;