style to make a LinkButton appear as a hyperlink
style to make a LinkButton a开发者_如何学Cppear as a hyperlink
inline css style=" "
thanku
You can use this css command in your paragraph tag or iin the header tag.We can able to set color for the link, when it is active,visited and when the mouse is over the link.
A:link {color: blue;}
A:visited {color: purple;}
A:active {color: red;}
A:hover {color: red;}
Text decoration
- underline - This will underline your hyperlink text.
- overline - This will apply a line on top of your hyperlink text.
- none - This will remove the underlining normally applied to hyperlink text.
Syntax
text-decoration:none;
you can use(underline
,overline
)
精彩评论