<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>背景样式的使用</title>
<style type="text/css">
div{
width: 500px;
height: 450px;
background-color: red;
background-image: url(imgs/arrow-right.gif);
/* 重复方式属性 */
background-repeat: repeat;
/* 图片定位属性 第一个center指的是水平居中 第二个属性值说明竖直置顶 */
background-position: center top;
/* shift+alt 多重输入选中 */
/* 简写以上四个属性 该属性将上面的覆盖了 平铺方式沿x轴平铺 位置水平居中 蓝色 背景 背景属性简写时不分先后顺序 另外补充:字体font属性简写需要分先后顺序分别 为字体风格 字体粗细 字体尺寸 字体字号*/
background:blue repeat-x center url(imgs/arrow-down.gif) ;
}
</style>
</head>
<body>
<div></div>
</body>
</html>