Having an issue with the dynamic resizing of Divs containing Images in my HTML Table.
The Challenge: The Image within a resizable Div gets clipped at the bottom when the height decreases due to window resizing.
To view the problem, visit this Example Page, where the globe image on the right side is affected.
Here's a snippet of the code causing the clipping:
<td class="td_BodyRight">
<div class="div_RootBody">
<h1 style="text-align:center; font: bold 1.5em Arial;">Welcome to the Home Page for this Example Web Site</h1>
</div>
<div class="div_RootBody">
<img style="float:right; padding:3px; width:150px; height:150px" src="./IMAGES/MAIN/globe1.png" alt="Global NOUNZ"/
<p><b>Note:</b> NOUNZ is a registered trademark of the International Foundation for Information Technology (IF4IT).</p>
<p>This entire Web Site was generated, in minutes, by the IF4IT NOUNZ platform and is in place as a live demonstration so that people can see and understand, for themselves, what the output of a NOUNZ compiled data set looks and feels like.</p>
<p>It should also be noted that the data contained and represented within this Web Site is strictly fabricated and for demonstration purposes. Such data is not intended nor should it be interpreted to represent anyone or anything outside this demonstration.</p>
</div>
.
.
.
Seeking advice on preventing image clipping in this scenario.
Thank you,
Frank