I have written this html script to display wikipedia inside iframe but i want to change the background color of it, below is the code snippet which i tried. but its not working.
<!DOCTYPE html> <html> <head> <style> body { background-color: blue !important; /* Adding !important will give this rule more precedence over inline style */ } </style> </head> <body> <iframe style="background-color:#fc3 !important;" src="https://www.wikipedia.org/" width="100%" height="450px" > </iframe> </body> </html>
You cannot modify the contents of an iframe before loading (using CSS), because it is displaying content from another page. After it loads, you may modify it with javascript.
2.1m questions
2.1m answers
60 comments
57.0k users