在导航中网站布局下方的网站中,当将鼠标悬停在按钮上时,它会上升,当鼠标被拿走时它会向下沉,如何用 CSS 或其他方式做到这一点?
www.bigfishgames.com/
你可以用普通的CSS来做到这一点:
<!DOCTYPE html>
<html>
<head>
<style>
div { border-radius: 4px; width: 100px; height: 20px; background: green; position: absolute; top: 50px; left: 50px; text-align: center; padding: 10px 0px; }
div:hover { top: 40px; padding-bottom: 20px; }
</style>
</head>
<body>
<div>Howdy</div>
</body>
</html>
请注意padding-bottom
和height
是如何变化的,以给人一种div
正在"向上"扩展的错觉。