Can you style html form buttons with css?

后端 未结 6 823
深忆病人
深忆病人 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:04

    Yeah, it's pretty simple:

    input[type="submit"]{
      background: #fff;
      border: 1px solid #000;
      text-shadow: 1px 1px 1px #000;
    }
    

    I recommend giving it an ID or a class so that you can target it more easily.

提交回复
热议问题