CopyPastor

Detecting plagiarism made easy.

Score: 0.7559306025505066; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2018-08-14
by Ramesh

Original Post

Original - Posted on 2013-09-12
by ISBL



            
Present in both answers; Present only in the new answer; Present only in the old answer;

`<a>` tag doesn't have the behavior of a button. Inorder make it try the following code
a.btn{ -webkit-appearance: button; -moz-appearance: button; appearance: button;
text-decoration: none; color: initial; }
If you'd like to avoid hard-coding a specific design with css, but rather rely on the browser's default button, you can use the following css.

a.button { -webkit-appearance: button; -moz-appearance: button; appearance: button; }
Notice that it probably won't work on IE.

        
Present in both answers; Present only in the new answer; Present only in the old answer;