I want my background image auto resize, so I set background-size: cover;
div.slide{ /* CSS for each image's DIV container within main container */
background-color: black;
background-position: top center; /* center image within carousel */
background-repeat: no-repeat;
background-size: cover; /* CSS3 property to scale image within container? "cover" or "contain" */
color: black;
}
but it's not working, is anyone know why?