Can you style html form buttons with css?

后端 未结 6 849
深忆病人
深忆病人 2020-12-01 05:11

I don\'t like the default button style. It\'s really boring. I am using


type buttons. Can I style these some

6条回答
  •  余生分开走
    2020-12-01 06:08

    Yes you can target those specificaly using input[type=submit] e.g.

    .myFormClass input[type=submit] {
      margin: 10px;
      color: white;
      background-color: blue;
    }
    

提交回复
热议问题