Hi Randy,
Thank you contacting Syncfusion support.
We suggest you to fit the images to a particular width and height using css by checking the window.innerWidth in if condition
<code>
function onchange()
{
if(window.innerWidth < 480) //Enter the inner width of small screens required
{
$(".content-iframe").contents().find('img').css({'width':'100%','height':'100%'});
}
}
</code> |
We have prepared a sample based on our understanding. Please refer the below link
If we have misunderstood your requirement please get back to us with clear details
Regards,
Keerthana.