1
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

iframeの背景色を透明にして、読み込み元と同じ背景色にする

Last updated at Posted at 2017-10-30

参考

方法

  • iframeタグで allowtransparency='true'
  • frameborder=0 で枠線を消す
読み込み元
<iframe src='a.html' allowtransparency='true' frameborder=0></iframe>
  • a.html側で背景色を透明にする
a.html
<style>
body {
        background-color: transparent;
}
</style>
aaa
1
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?