CSS
.thingy {
/* Link to an image in another folder */
background-image: url("../images/pattern.svg");
/* Control how the image repeats: `repeat`, `no-repeat` `repeat-x` `repeat-y` */
background-repeat: no-repeat;
/* Change the size of the image: `width height` */
background-size: 64px auto;
/* Change the location of the image: `horizontal vertical` */
background-position: left center;
}