0

Iv found an image slider the url is below. the image has to be a certain height + width as specified in the css .. but my images are to big is there a way to make the images "strech" because im not going to resize 100+ images .. these are not set as background images.

Here is the page hopefully this can help any one else who has problem's with image slider's size..

i would write a jsfiddle but there is to much code to include sorry for the inconvenience

** Things iv tryed **

img{height:100%;width:100%;}
img{max-height:100%;max-width:100%}

aswell as adding the style="" in the img tag

1 Answers1

0

You will need to have an image as inline-block and then give it width:100%

img{display:inline-block;position:relative;width:100%}
Gandalf
  • 11,766
  • 26
  • 82
  • 146