Hello,
I've an image tag inside a div element.
<div id = "myDiv">
<img alt = "myImage" src = "some_source"/>
</div>
The image is bigger than the div, so the image is not inside the div element. First, I've thought about using width = x, height = y. But as I'm still designing the page, I fear to have to worry all the time those 2 dimensions.
How can I keep the image inside the div element? also, respecting the dimensions of the div element?
Thanks for helping