1 <img src="fire-salamander.jpg">
2/*Make sure that your file name is case accurate, put it where fire salamander is./*/
1background-image: url(path);
2background-repeat: no-repeat;
3width: 10px;
4height: 20px;
5
1div.mydiv:after {
2 content: url(image.jpg); /*url of your image*/
3}
4
5or
6
7div.mydiv {
8 width:100px; /*width of your image*/
9 height:100px; /*height of your image*/
10 background-image:url('image.file');
11}