背景图垂直对齐的问题可以使用 background-position 属性来解决。该属性有两个值,第一个值表示水平方向的背景图位置,第二个值表示垂直方向的背景图位置。默认值为 center center,即水平和垂直方向都居中。
示例代码:
// 将背景图上移 20px background-position: center 20px; // 将背景图下移 20% background-position: center 20%; // 将背景图垂直对齐到底部 background-position: center bottom; // 将背景图垂直对齐到顶部 background-position: center top;