Custom Property Hover Effect
Preview
Code
<style>
@property --radius{
syntax: "<length>";
inherits: false;
initial-value: 0px;
}
.box{
width:120px;
height:80px;
background:#2563eb;
border-radius:var(--radius);
transition:--radius .3s;
}
.box:hover{
--radius:30px;
}
</style>
<div class="box"></div>