.formholder input[type="submit"] {
background: #84c40b;
font-size: 10px;
display: inline-block;
width: 115px;
height:31px;
border: none;
color: #fff;
text-transform:uppercase;
如何选择CSS,以便我可以在第二个提交按钮上暗示另一种颜色?
非常感谢。
答案 0 :(得分:0)
.formholder input[type="submit"]:nth-child(2) {
background: #ff0000;