gpt4 book ai didi

html - CSS。移动设备中按钮的幽灵风格

转载 作者:可可西里 更新时间:2023-11-01 13:25:11 26 4
gpt4 key购买 nike

同一页面的以下 2 个版本。有一个提交按钮,它有一个橙色的风格,它在桌面上正确显示。第二个屏幕上的按钮具有渐变和完全不同的风格。这种魔法只出现在移动设备上。我查看了整个 CSS 并没有找到任何样式。 Chrome 移动模拟器正确显示它。所以我的问题是:如何调试和修复这种风格?一些技术细节:模态的华丽弹出插件,按钮的样式:

.form .btn, .beeline-custom .form input.btn {
padding: 0;
border: none;
background: none;
display: block;
width: 100%;
max-width: 239px;
margin: 0 auto;
padding: 16.5px 10px;
text-align: center;
background: #fec81e !important;
-webkit-border-radius: 40px;
border-radius: 40px;
-webkit-transition: 0.3s ease;
transition: 0.3s ease;
color: #000000;
text-transform: uppercase;
font-weight: 700;
font: 17px/1.2 'Roboto-Regular',sans-serif;
}

enter image description here

enter image description here

UPD 问题由 BenM 的评论修复:-webkit-appearance: none to button css

最佳答案

您可以使用 appearance 覆盖任何浏览器默认值CSS 属性。将其设置为 none 就可以了:

-webkit-appearance: none;
-moz-appearance: none;
appearance: none;

关于html - CSS。移动设备中按钮的幽灵风格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39634316/

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