How to make a submit button display as a link?

后端 未结 8 849
春和景丽
春和景丽 2020-12-03 06:51

This is not working in IE:

.text-button { background: transparent; 
               text-decoration: none; 
               cursor: pointer; }





        
8条回答
  •  旧巷少年郎
    2020-12-03 07:30

    Copied from this link you can make your button look like a link -

    .submitLink {
      background-color: transparent;
      text-decoration: underline;
      border: none;
      color: blue;
      cursor: pointer;
    }
    submitLink:focus {
      outline: none;
    }

提交回复
热议问题