Discussion board
Background Image Using CSS
By Pradeep Chikkanna
Hi All,
Please let me know the code to apply a background image using CSS... I tried this but did not work

body {
background-image: image/banner12.jpg;
}


Thanks for the reply in Advance !!!
Reply
Post   Reset
Teacher SiliconIndia replied to Pradeep Chikkanna Sunday, March 07, 2010
body{
margin:0px;
padding:0px;
background-image:url(images/banner.jpg); background-repeat:no-repeat;
}

You are missing to write "url" use top code it will come


Regards