The css property that you want is max-width :
Css
img {
max-width:100%;
}
You could add a container around your image and set overflow:hidden to prevent images to get bigger than the defined width/height.
The css property that you want is max-width :
Css
img {
max-width:100%;
}
You could add a container around your image and set overflow:hidden to prevent images to get bigger than the defined width/height.