Kod:
<html>
<head>
<title>Bu kod Trabzon Ticaret Meslek Lisesi Bilişim 12-A sınıfı Öğrencisi Doğukan TARAKÇI tarafından yazılmıştır</title>
<style>
div {
width:900px;
height:100px;
background:red;
background-image:url("ts.jpg");
transition:height 1s;
-moz-transition:height 1s;
-webkit-transition:height 1s;
-o-transition:height 1s;
}
div:hover {
height:600px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>