I hava A image in a slider. it is responsive but the image is to big.
How can i resize it? (but it has to stay responsive)
<img src="switch/3.jpg" class="homeImg">
.homeImg{ width: 100%;
}
I hava A image in a slider. it is responsive but the image is to big.
How can i resize it? (but it has to stay responsive)
<img src="switch/3.jpg" class="homeImg">
.homeImg{ width: 100%;
}
You can try using width: 100%; height: auto;
. This literally means: set the width of the image to 100% of the page width and maintain its aspect ratio.