Hello. I have a button on a web page and when the mouse is over it becomes larger (don't ask why).
.buton {
/* some code here*/
height:50px;
width:100px;
text-decoration:none;
text-align:center;
text-shadow:1px 1px 0px #ffffff;
transition:width 0.5s, height 0.5s;
}
.buton:hover {
width:200px;
height:200px;
}
In body is this code:
<a href="#" class="buton">BLABLA 1</a>
How can I change the button text when it becomes larger? For example, instead of BLABLA 1, be HELLO 1.