I am trying to use iframes to open other urls. But for the reason the iframe width is fixed at 155px.
I need to resize the iframe width to fit all iframe SRCs.
<!DOCTYPE html>
<html>
<body>
<iframe frameborder="0" scrolling="no" height="100%" width="100%" src="http://www.gnu.org/"></iframe>
</body>
</html>
I tried width = "100%" but did not work.
source
share