0
0

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 5 years have passed since last update.

colorboxで表示したiframeで下に余白が出来るのを修正する

0
Last updated at Posted at 2019-04-16

環境

特になし

したいこと

colorbox で YouTube iframe をモーダルとして表示させたら、なぜかモーダル内の iframe の下に 6px の余白が出来てしまったので、これを修正したい。

解決策

モーダルとかのサイズ指定の問題かと思ったら、どうやら iframe の表示位置の問題だったみたいですね。以下で治りました。……結構時間取られた。

iframe {
    vertical-align:bottom;
}

これだけ。……これだけ……。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?