background-image in MVC4 not work

VladChepesh

New Member
I am using basic template for mvc 4.I want set background image for my div element.My stylesheet located in "~/Content" directory.Here is part of my .cshtml file where I am trying direct specify image without css:\[code\] <div id="add_image" class ="image_bar" style="background-image:url(add.jpg)" ></div>\[/code\]Here is my css:\[code\]#add_image { background-image:url('~/add.jpg');}#add_image:hover { background-image:url('~/addhover.jpg');}.image_bar { width:40px; height:40px;}\[/code\]Neither css neither direct "styling" not works - whats wrong? Thanks.
 
Back
Top