如何选择第二个提交按钮以暗示其他颜色

时间:2015-12-26 22:10:28

标签: css

.formholder input[type="submit"] {
  background: #84c40b;
  font-size: 10px;
  display: inline-block;
  width: 115px;
  height:31px;
  border: none;
  color: #fff;
  text-transform:uppercase;

如何选择CSS,以便我可以在第二个提交按钮上暗示另一种颜色?

非常感谢。

1 个答案:

答案 0 :(得分:0)

CSS3 :nth-child() Selector

.formholder input[type="submit"]:nth-child(2) {
    background: #ff0000;