Attempting to design a style sheet for my MVC3 application. I'm uncertain about the formatting needed for the background-image:url property.
background-image:url('../../Content/images/gradient_tile_page_top.png');
or
background-image:url('~/Content/images/gradient_tile_page_top.png');
Have tested both options but neither seems to be effective. CSS can be a bit complicated when working with MVC frameworks.