Change height-top of item when hover

前端 未结 2 462
渐次进展
渐次进展 2021-01-28 10:57

I want to create a menu. When I hover, height-top of item will change like

\"enter

2条回答
  •  不思量自难忘°
    2021-01-28 11:12

    A similar effect can be achieved using negative margins to move the element up, then padding to move the text back to its original position.

    #menu a:hover {
        margin-top: -10px;
        padding-top: 10px;
        background-color: #6666AA;
    }
    

    Example: http://jsfiddle.net/bwQCL/1/

提交回复
热议问题