您还可以使用多个背景图像。在此示例中,我为左侧、中间和右侧背景图像设置了背景图像:
h1, h2, h3, h4, h5, h6 {
background-image: url("images/heading-bg-left.png"), url("images/heading-bg-right.png"), url("images/heading-bg-center.png"); /* set each bg image */
background-position: left center, center center, right center; /* set position of each bg image */
background-repeat: no-repeat, no-repeat, repeat-x; /* set repeat of each bg image */
padding: 0 92px; /* 92px is the width of my left and right bg images */
height: 120px; /* 120px is the height of each bg image */
line-height: 120px; /* ditto */
}
该代码是相当不言自明的,但基本上我已经使用了三个background-image
s 和三个background-position
s 和三个background-repeat
s。
请注意,图像以相反的顺序呈现。因此,在我的示例中,左右图像将绘制在中心图像之上。