Reputation: 2141
I am setting up a website and i have an iframe with content loaded from external websites:
<iframe src="example.com"></iframe>
this leaves ugly double scroll bars on my page.
Have tried searching for solutions but ran into these issues:
Is there any possible workaround for this problem?
Thank You
Upvotes: 0
Views: 62
Reputation: 13421
Just set scrolling attribute as "no".
<iframe src="example.com" scrolling="no"></iframe>
UPDATE:
If your content is just iframe, you can do it like this,
<html>
<head>
<style type="text/css">
body {overflow:hidden}
</style>
</head>
<body>
<iframe width="100%" height="100%" src="http://example.com" scrolling="yes"></iframe>
</body>
</html>
Upvotes: 1