The Transition Porperty
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="STYLESHEET"type="text/css"href="web.css">
<title>web design</title>
</head>
<body>
<h1>The Transition Porperty</h1>
<p>Hover over the div element below, to see the transition effect:
</p>
<div class="box"></div>
</body>
</html>
CSS The Transition Porperty Style
.box{
width:100px;
height:100px;
background-color: red;
transition:width 2s,height 4s ;
}
.box:hover{
width:300px;
height: 300px;
}
No comments:
Post a Comment