Can you style html form buttons with css?

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

    You can achieve your desired through easily by CSS :-

    HTML

    
    

    CSS

    #submit {
        background-color: #ccc;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius:6px;
        color: #fff;
        font-family: 'Oswald';
        font-size: 20px;
        text-decoration: none;
        cursor: pointer;
        border:none;
    }
    
    
    
    #submit:hover {
        border: none;
        background:red;
        box-shadow: 0px 0px 1px #777;
    }
    

    DEMO

提交回复
热议问题