Answers for "scale text on hover css"

CSS
4

how to make a button grow in css

.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }
Posted by: Guest on May-10-2020
0

css text larger on hover

#sname {
    margin-top: 100px;
    margin-bottom: 100px;
    color: rgba(1,1,1,0.7);
}

#sname a {
    font-weight: bold;
    font-size: 4em;
    transition: all 500ms;
}
    
#sname a:hover {
    font-size:88px;
    font-size-adjust: 20px;
}

*/
<div id="sname">
    <a href="#">test</a>
</div>
*/
Posted by: Guest on February-22-2021

Browse Popular Code Answers by Language