How to style input and submit button with CSS?

前端 未结 11 837
天涯浪人
天涯浪人 2020-12-12 13:25

I\'m learning CSS. How to style input and submit button with CSS?

I\'m trying create something like this but I have no idea how to do

11条回答
  •  盖世英雄少女心
    2020-12-12 14:04

    HTML

    
    

    CSS

    #submit {
     color: #fff;
     font-size: 0;
     width: 135px;
     height: 60px;
     border: none;
     margin: 0;
     padding: 0;
     background: #0c0 url(image) 0 0 no-repeat; 
    }
    

提交回复
热议问题