Styling an anchor tag to look like a submit button

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

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




        
10条回答
  •  Happy的楠姐
    2020-11-29 04:57

    Using CSS:

    .button {
        display: block;
        width: 115px;
        height: 25px;
        background: #4E9CAF;
        padding: 10px;
        text-align: center;
        border-radius: 5px;
        color: white;
        font-weight: bold;
    }
    
    Cancel
    

提交回复
热议问题