Im trying to get an background image displayed in a button div but its not showing up.
Changing background-image to background-color works and it displays a color in the correct spot the image should of been.
Im drawing a blank here: jsfiddle
This is the piece of code:
.strawberry {
height:65px;
width:100%;
background-image: url('src/bg_button.jpg');
background-repeat:no-repeat;
background-attachment:fixed;
background-position:center;
overflow:hidden;
}
Im new to html5 so please be gentle.