Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Remove Border from IFrame Using CSS</title> <style> iframe { border: none; } </style> </head> <body> <iframe src="https://www.tutorialrepublic.com/" width="500" height="500">Browser not compatible.</iframe> </body> </html>