Css - hover attribute

Thuộc tính hover trong CSS




đặt thẻ a là logo
sao đó sữ dụng thuộc tính hover để đi chuyển logo
sao đây là code dùng để di chuyển lên trên

.logo a:hover {
    margin-top: -10px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

Post a Comment

Previous Post Next Post