একটি উপাদানের প্রস্থ এবং উচ্চতা বৈশিষ্ট্যের জন্য রূপান্তর প্রভাব যোগ করতে, আপনি নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন
উদাহরণ
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 150px;
height: 150px;
background: blue;
transition: width 3s;
}
div:hover {
width: 250px;
height: 250px;
}
</style>
</head>
<body>
<h1>Heading One</h1>
<p>Hover over the below box to change its width and height.</p>
<div></div>
</body>
</html>