gpt4 book ai didi

html - CSS - 改变按钮颜色?

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

我正在使用以下代码为所有按钮设置外观:

input[type=submit] {
font-family: Modern, serif;
border: none;
margin-right: 1em;
padding-left: 30px;
padding-right: 30px;
text-decoration: none;
font-size: 20px;
background: #549396;
color: white;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
position: relative;
}

问题是我所有的按钮都是一样的,我希望能够调用某些按钮并改变它们的外观。例如蓝色的关注按钮和灰色的取消关注按钮。谢谢大家

最佳答案

你想做的似乎是一个“hack”。您有许多具有相同 HTML 的按钮,而您只想更改其中的一些?

考虑到您正在使用表单...那么您就有了一个表单名称

您可以使用此 CSS:

form[name=login] input[type=submit]
{
background: green;
}

form[name=subscribe] input[type=submit]
{
background: red;
}

我假设您的表单有一个名称。

关于html - CSS - 改变按钮颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26248992/

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