skip to Main Content

Html – Remove scrollbar inside iframe with margin

I have html like this (index.html): <html> <head> <style> iframe { height: 200px; width: 200px; border: 0; } </style> </head> <body> <iframe src="frame.html" marginheight="0"></iframe> </body> </html> And frame.html <html> <head> <style> body, html { height: 100%; background: #f88; margin: 0;…

VIEW QUESTION
Back To Top
Search