Change body background color in an iframe using one css file

后端 未结 6 1216
隐瞒了意图╮
隐瞒了意图╮ 2020-12-18 07:51

Using a iframe where I call a site from my webspace, Using one css file with body {background-color: #222}.

The iframe src also use this CSS file. The P

6条回答
  •  一向
    一向 (楼主)
    2020-12-18 08:39

    using Javascript We can add Background Color to Iframe

     var x = document.getElementById("myframe");
        var y = (x.contentWindow || x.contentDocument);
        if (y.document)y = y.document;
        y.body.style.backgroundColor = "red";
    

    Reference w3schools

提交回复
热议问题