我必须制作一个<a>
锚,它看起来与HTML按钮类似。但是我无法在输入类型按钮上找到默认的背景颜色。
答案 0 :(得分:5)
Firefox使用缩放灰色 - 从最暗点的RGB(112,112,112)#707070到最轻的RGB(252,252,252)#FCFCFC。
这样的事情可能会接近:
/* Note: This gradient may render differently in browsers that don't support the unprefixed gradient syntax */
/* IE10 Consumer Preview */
background-image: -ms-linear-gradient(top left, #707070 -50%, #FCFCFC 110.00000000000001%);
/* Mozilla Firefox */
background-image: -moz-linear-gradient(top left, #707070 -50%, #FCFCFC 110.00000000000001%);
/* Opera */
background-image: -o-linear-gradient(top left, #707070 -50%, #FCFCFC 110.00000000000001%);
/* Webkit (Safari/Chrome 10) */
background-image: -webkit-gradient(linear, left top, right bottom, color-stop(-.5, #707070), color-stop(1.1, #FCFCFC));
/* Webkit (Chrome 11+) */
background-image: -webkit-linear-gradient(top left, #707070 -50%, #FCFCFC 110.00000000000001%);
/* W3C Markup, IE10 Release Preview */
background-image: linear-gradient(to bottom right, #707070 -50%, #FCFCFC 110.00000000000001%);
但是你可能想要使用其中一种CSS工具来实现它。
答案 1 :(得分:2)
网页上控件的“默认”颜色会有所不同,具体取决于您使用的浏览器以及您使用的操作系统。 Mac控件看起来与IE中的PC控件非常不同。电话也会以不同方式显示控件。
让它们看起来一样的最好方法是通过CSS设置它们的样式,所以从你喜欢的浏览器中选择一种颜色。
答案 2 :(得分:0)