CSS multiple backgrounds issue -


why not working? how should change it?

jsfiddle

<div id="slider" class="middle"> </div> #slider{ height:467px; background:#eeeeee url(cercuri.png) no-repeat left top, url(cercuri2.png) no-repeat right top; } 

as can see, want background-color , 2 images, 1 left , 1 right.

remove color , leave (sorry, used own images since had images @ localhost)

#slider{ height:467px; background-color:#eee; background: url(http://c.dryicons.com/files/graphics_previews/sunset_landscape.jpg) no-repeat left top,  url(http://media-cdn.tripadvisor.com/media/photo-s/01/e4/f8/e6/another-view-of-landscape.jpg) no-repeat right top;  } 

you can see fiddle here


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -