I have a ASP hyperlink in my aspx page. The link is just a text “Click here”.
I have seen some effects in certain websites; if a user points his mouse on the link, then the link will zoom a bit larger in size. When the user moves the mouse pointer away from the link, the link returns back to its original size.
How do I achieve it? Is it done using CSS?
I have attached my existing CSS here.
<style type="text/css">
.style1
{
font-size: large;
font-weight: bold;
font-family: Arial;
}
</style>
There is a CSS hover property
example (more info)
You can also use javascript and the mouseover property of the a tag