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

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

非常感谢。

最佳答案

CSS3 :nth-child() Selector

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

关于css - 如何选择第二个提交按钮来暗示其他颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34475698/

10-08 21:52