<!DOCTYPE html>
<html>
<head>
    <title>Xem ví dụ</title>
    <style type="text/css">
        div{
            background-color:green;
            width:100px;
            height:100px;
            transition-property:none;
            transition-duration:4s;
        }
        div:hover{
            background-color:red;
            width:300px;
            height:300px;
        }
    </style>
</head>
<body>
    <h3>- Các bạn hãy thử dí con trỏ vào phần tử bên dưới.</h3>
    <div></div>
</body>
</html>