Use CSS variable (Transform)
This is CSS variable sheet(transform)
/* transform CSS variable */
.transform{
width: 200px;
height: 200px;
background-color: blueviolet;
margin: 0 auto;
margin-top: 200px;
margin-bottom: 200px;
transition: 3s;
}
.transform:hover{
transform: scale(1.9) rotate(360deg);
}
.rtd11{
margin: 0 auto;
color: white;
}
This is HTML sheet
<div class="transform">
<h1 class="rtd11">Ismail Sardar</h1>
</div>
Comments
Post a Comment