Kod
<html>
<head>
<style>
div
{
width:100px;
height:100px;
background:red;
transition:width 2s;
-webkit-transition:width 2s;
}
div:hover
{
width:300px;
}
</style>
</head>
<body>
</body>
</html>
<head>
<style>
div
{
width:100px;
height:100px;
background:red;
transition:width 2s;
-webkit-transition:width 2s;
}
div:hover
{
width:300px;
}
</style>
</head>
<body>
</body>
</html>