I have an iframe
<iframe src="../Images/landingpage.jpg" id="Iframe1" name="ifrmContent" class="ifrmClass">
</iframe>
I found in inspector element that img tag lies in "#document" which has body tag
<html>
<body style="margin: 0px;">
<img style="-webkit-user-select: none;" src="../Images/landingpage.jpg">
</body>
</html>
I need to access this img("landingpage.jpg") in order to change(image is small.. need to resize) its width to 100% and height:90%
I have tried using #Iframe1>#document>html>body>img{width:100%;}