CSS鼠标悬停图片转动

header .hero-image { position: relative; } header .hero-image img { transition: 300ms; } header .hero-image...

CSS鼠标悬停图片转动

header .hero-image {position: relative;}header .hero-image img {transition: 300ms;}header .hero-image img:hover {tran...

CSS选中第一个和最后一个元素

下面可以选择最后一个元素:.nav-items li:nth-last-of-type(1) { margin: 0; } 下面可以选择第一个元素:.social-icons a:nth-of-type(1) { margin-lef...

让按钮动起来的一个案例

重点:a 标签必须有display: inline-block; transition: 300ms;a:hover使用transform: translateY(-8px);header a { font-size: 24px; c...