1. 背景图片以及背景色
background-image 属性为元素设置背景图像。
元素的背景占据了元素的全部尺寸,包括内边距和边框,但不包括外边距。
默认地,背景图像位于元素的左上角,并在水平和垂直方向上重复。
:请设置一种可用的背景颜色,这样的话,假如背景图像不可用,页面也可获得良好的视觉效果。
-》遭遇情况 :我需要为一个白色背景的div添加箭头图片,箭头图片本身颜色是灰色,
情况1: background:url('../img/iconfont-jiantou.png')no-repeat left center;
background-color: white;
此时背景为白色
情况2: background-color: white;
background:url('../img/iconfont-jiantou.png')no-repeat left center;
此时背景为灰色
2.