gpt4 book ai didi

css - 如何在现有 CSS 中添加新属性?

转载 作者:行者123 更新时间:2023-11-28 12:17:00 26 4
gpt4 key购买 nike

我有两个 css 文件。我在下面的一个 css 中有一个类

input[type="submit"], input[type="button"], .butLink {
padding: 3px 9px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
-khtml-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.3);
-webkit-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.3);
box-shadow: inset 1px 1px 0 rgba(255,255,255,0.3);
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 12px;
font-weight: bold;
cursor: pointer;

color: #FFFFFF;
background: #A5BD24;
background: -moz-linear-gradient(top, #A5BD24 0%, #7DAC38 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#A5BD24), color-stop(100%,#7DAC38));
background: -webkit-linear-gradient(top, #A5BD24 0%,#7DAC38 100%);
background: -o-linear-gradient(top, #A5BD24 0%,#7DAC38 100%);
background: -ms-linear-gradient(top, #A5BD24 0%,#7DAC38 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a5bd24', endColorstr='#7DAC38',GradientType=0 );
background: linear-gradient(top, #A5BD24 0%,#7DAC38 100%);
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
border: 1px solid #781;
}

现在我想从另一个 css 文件更改此样式。我尝试了下面的方法,但它不起作用 -

input[type="submit"], input[type="button"], .butLink
{
background-color:#000 !important;
}

有什么想法吗?

最佳答案

编写 background 将覆盖以前定义的属性。

写:

input[type="submit"], input[type="button"], .butLink{
background:#000;
}

关于css - 如何在现有 CSS 中添加新属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20748399/

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