1)图片标签
<img src="图片路径" />
2)背景图片
<style>
div{
background:url("图片路径");
}
</style>
3)常用样式
单位 | 值 | 作用 |
---|---|---|
background-color | 颜色值 | 设置背景色 |
background-image | 图片路径 | 设置背景图片 |
background-repeat | repeat | no-repeat | repeat-x | repeat-y | 设置背景图片平铺 |
background-position | 长度 | 设置背景图片位置 |
background-attachment | scroll | fixed | 设置背景图像是否滚动 |
background-size | contain | cover | 100px 100px | 50% 100% | 设置背景图像大小 |