How to set background image div in CSS?

How to set background image div in CSS?

+9
css
source share
2 answers
background-image: url('image path'); 

Put this block of code in your CSS to set the background image.

+12
source share

Put this in your <DIV> class or id:

 background-image:url('../img/bg.png'); 
+7
source share

All Articles