adam84 Posted June 21, 2010 Share Posted June 21, 2010 Hello, when I view my page in IE, I get all my content (all 3 iframes), but when I run it in firefox, i only get the first iframe to show up. The firefox source code is shown below, it doesn't even show up the border for the last two frames. Any ideas? <iframe width="100%" height="350" src="page1.php" frameborder="0" scrolling="no"><br> <iframe width="100%" height="350" src="page2.php" frameborder="1" scrolling="no"><br> <iframe width="100%" height="350" src="page3.php" frameborder="1" scrolling="no"> Link to comment https://forums.phpfreaks.com/topic/205417-problem-with-firefox/ Share on other sites More sharing options...
joePHP Posted June 21, 2010 Share Posted June 21, 2010 Hi, You need to close the iframes: <iframe width="100%" height="350" src="" frameborder="1" scrolling="no"></iframe> <iframe width="100%" height="350" src="" frameborder="1" scrolling="no"></iframe> <iframe width="100%" height="350" src="" frameborder="1" scrolling="no"></iframe> Joe Link to comment https://forums.phpfreaks.com/topic/205417-problem-with-firefox/#findComment-1075079 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.