gpt4 book ai didi

HTML 按钮背景颜色属性不起作用

转载 作者:太空狗 更新时间:2023-10-29 15:39:56 25 4
gpt4 key购买 nike

在下面page :

我有一个灰色按钮(请参阅第一本书的部分,它是页面中唯一的灰色按钮)但它应该是蓝色的。我从邮件服务中剪切并粘贴代码(见下文)。属性(property):背景色:#47abd5;不起作用。为什么?

<style>
#mlb2-3734193 button.ml-subscribe-button {
cursor: pointer;
font-family: Open Sans!important;
font-size: 24px !important;
height: 60px;
width: 250px;
background-color: #47abd5;
color: #ffffff!important;
border: none;
border-radius: 2px;
padding: 0px 24px;
}
</style>
<link href="https://fonts.googleapis.com/css?family=Open+Sans& subset=latin,latin-ext" rel="stylesheet" type="text/css">
<form id="mlb2-3734193" action="//app.mailerlite.com/webforms/popup/z0d1n7" data-code="z0d1n7" data-id="243593" target="_blank">
<div stylclass="button-preview">
<button style="background-color: #47abd5;" type="submit" class="ml-subscribe-button">Iscriviti</button>
</div>
</form>
<script type="text/javascript" src="//static.mailerlite.com/js/w/button.min.js?veb3acdd46bf692c067c6a9fe9fbc07d6"></script>

最佳答案

因为此 css 已应用于您的按钮。

a.button,
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dfdfdf), color-stop(1, #ffffff));
background: -ms-linear-gradient(bottom, #dfdfdf, #ffffff);
background: -moz-linear-gradient(center bottom, #dfdfdf 0%, #ffffff 100%);
background: -o-linear-gradient(#ffffff, #dfdfdf);
}

我想有一个背景渐变覆盖了您的样式。正如@Turnip 建议将其更改为背景而不是背景颜色,它会起作用

关于HTML 按钮背景颜色属性不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41180844/

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