CSS multiple backgrounds issue -
why not working? how should change it?
<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
Post a Comment