Styling an anchor tag to look like a submit button

后端 未结 10 1512
谎友^
谎友^ 2020-11-29 04:19

I have a form where there\'s a \"Submit\" button and a \"Cancel\" anchor. The HTML is this:




        
10条回答
  •  余生分开走
    2020-11-29 04:48

    HTML

     HOME 
    

    CSS

    .button { 
             background-color: #00CCFF;
             padding: 8px 16px;
             display: inline-block;
             text-decoration: none;
             color: #FFFFFF;
             border-radius: 3px;
    }
    .button:hover{ background-color: #0066FF;}
    

    Watch the tutorial

    https://youtu.be/euti4HAJJfk

提交回复
热议问题