<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
.cs{
width: 100px;
height: 100px;
border:1px solid red;
border-radius: 100px;
background-color: red;
}
.cs:hover{
width: 200px;
height: 200px;
border:1px solid red;
transition: width 2s,height 2s;
-webkit-transition: width 2s,height 2s; /* Safari */
}
</style>
</head>
<body>
<div class ="cs" >
</div>
</body>
</html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
.cs{
width: 100px;
height: 100px;
border:1px solid red;
border-radius: 100px;
background-color: red;
}
.cs:hover{
width: 200px;
height: 200px;
border:1px solid red;
transition: width 2s,height 2s;
-webkit-transition: width 2s,height 2s; /* Safari */
}
</style>
</head>
<body>
<div class ="cs" >
</div>
</body>
</html>