I want to scale hyper link but I can't.
Here is what I tried.
HTML
<div class="bgdf">
<p>
<small>Copyright <span class="glyphicon glyphicon-copyright-mark"></span> All Right Reserved    |     <a href="www.google.com"> Testing </a></small>
</p>
</div>
I tried this
.bgdf a:hover{
transform: scale(1.3);
}
.bgdf a:hover {
transform: scale(1.3);
}
<div class="bgdf">
<p>
<small>Copyright <span class="glyphicon glyphicon-copyright-mark"></span> All Right Reserved    |     <a href="www.google.com"> Testing </a></small>
</p>
</div>