gpt4 book ai didi

html - 为什么在 chrome 中按钮看起来不如在 firefox 中好?

转载 作者:太空宇宙 更新时间:2023-11-04 12:57:22 25 4
gpt4 key购买 nike

我想在 chrome 中显示按钮,就像在 mozilla firefox 中一样,这里是代码:

.myButton {
font-size: 14px;
background:#e3e3e3;
color:gray;
padding:11px;
margin-right: 0;
width: 100%;
border: 0;
border-radius: 4px;
font: normal 'Roboto Condensed', Helvetica, Arial, serif;
text-transform:uppercase;
text-align:center;
display:inline-block;
transition:all 0.3s;
text-decoration:none;
-webkit-appearance: button;
cursor: pointer;
margin:0;
max-width:100%;
vertical-align:baseline;
box-sizing:border-box;
-webkit-font-smoothing: antialiased;
}
.myButton:hover {
background-color:#e9e9e9;
}
.myButton:active {
position:relative;
top:1px;
}

HTML:

<a href="#" class="myButton">Apply</a>

chrome 中的按钮:

Chrome Button

Mozilla 中的按钮:

Mozilla Button

任何引用或帮助将不胜感激。

最佳答案

你的边框和背景好像有问题。

两者都由 -webkit-appearance: button; 设置因为在 CSS 中,您给出的最后一条指令通常是前导(例如,如果您将背景设置两次,将使用最后一条)。

从您的代码中删除 -webkit-appearance: button; 它应该可以工作。

关于html - 为什么在 chrome 中按钮看起来不如在 firefox 中好?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25718216/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com