<IFRAME src="http://www.finn.no/jo
frameborder="0" border="0" marginwidth="0" marginheight="0"></IFRAME>
Main Topics
Browse All TopicsHello,
I try to make a index.html page that displays the webpage "http://www.finn.no/jobb" in an Iframe.
It works, but I get a horisontal scroll that I dont want to be displayed. How can I make this index.html page??
Here is my code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtm
<html xmlns="http://www.w3.org/1
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Jobb</title>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<IFRAME src="http://www.finn.no/jo
</body>
</html>
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
<IFRAME src="http://www.finn.no/jo
frameborder="0" border="0" marginwidth="0" marginheight="0"></IFRAME>
From: http://www.dynamicdrive.co
bigguysf (2006-02-23):"So here is the final combo of fixes I found that removes the horizontal scrollbar from iframes in ALL THREE BROWSERS -"
1) Add this style type to the page with the iframe:
iframe {overflow-x: hidden;}
2) Ensure the iframe scrolling property is set to scrolling=yes [or scrolling=auto]
3) To help ensure the framed content will fit cleanly inside without additional html elements (like tables and such),
use this style property in the iframe content page:
body {width:98%;}
4) Use proper doctype, e.g. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html
Hmmm... I still get the scroll...
Is it possible to show an external page using DIV-tags?
If you try saving this code as index.html, you still see the horisontal scroll:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Jobb</title>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<IFRAME src="http://www.finn.no/jo
frameborder="0" border="0" marginwidth="0" marginheight="0"></IFRAME>
</body>
</html>
Business Accounts
Answer for Membership
by: callrsPosted on 2006-09-06 at 02:09:19ID: 17461596
http://www.w3schools.com/c ss/pr_pos_ overflow.a sp CSS Overflow Property
add this to the <IFRAME> tag:
style="overflow:hidden;"