How can I apply CSS on all buttons which are present in that page?

后端 未结 5 1554
慢半拍i
慢半拍i 2020-12-08 16:46

I have created a CSS style class:

.btn { 
  color:#050; 
  font: bold 84% \'trebuchet ms\',helvetica,sans-serif; 
  background-color:#fed; 
  border:1px soli         


        
5条回答
  •  清歌不尽
    2020-12-08 17:18

    If your buttons are or submit, then this should do it:

    input[type="button"], input[type="submit"] { 
        color:#050; 
        font: bold 84% 'trebuchet ms',helvetica,sans-serif; 
        background-color:#fed; 
        border:1px solid; 
        border-color: #696 #363 #363 #696; 
    } 
    

    Otherwise, if your buttons are

提交回复
热议问题