html - Change background color of iframe with external href src? -
is possible load external href src inside iframe , override bg color of external href src? here's i've tried:
<iframe src="https://www.externaldomain.com" style="background-color: #fff !important;"></iframe>
you can try event javascript or jquery. this:
function changebackground(color) { document.body.style.background = color; } <body onload="changebackground('red');">
Comments
Post a Comment