Answers for "how to make a background image in before css"

CSS
0

CSS adding background image from file

/* The first method using an image on your server */
background: url('img/someimage.jpg');

/* The second method using an image hosted on another server */
background: url('http://www.someimage.com/someimage.jpg');

/* A third method that allows the site to determine protocol instead of explicitly defining it */
background: url('//www.someimage.com/someimage.jpg');
Posted by: Guest on August-31-2020
0

add background image in html without css

<body background='path/to/image/file.png'>
Posted by: Guest on August-08-2021

Code answers related to "how to make a background image in before css"

Browse Popular Code Answers by Language