Sunday, June 2, 2024
 Popular · Latest · Hot · Upcoming
40
rated 0 times [  46] [ 6]  / answers: 1 / hits: 42152  / 14 Years ago, fri, january 7, 2011, 12:00:00

This is not working in IE:



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



<input type=submit class=text-button value=vote+/>


It displays a square button.


More From » html

 Answers
32

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;
}

<input type=submit class=submitLink value=Submit>




[#94331] Wednesday, January 5, 2011, 14 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
brookelynshaem

Total Points: 468
Total Questions: 98
Total Answers: 101

Location: China
Member since Mon, Aug 22, 2022
2 Years ago
;