Hi,
The basic method for that is adding to the image css rule: max-width: 100%
Then When you are resizing browser, the image will be adjusted to the container.
so add image i.e. <img src="path.." class="my-image" />
Then in css code:
- Code: Select all
.my-image {
height: auto;
max-width: 100%;
}