As designers, adding background image via CSS is definetely a no-brainer to you. Traditionally, or typically, here’s how we do it – using background-image
property and link directly to the image source file.
- div {
- background-image: url(img/image.png);
- }