【问题标题】:I have a title after a youtube iframe, and the title is at the right of the iframe, why?我在 youtube iframe 之后有一个标题,而标题在 iframe 的右侧,为什么?
【发布时间】:2020-07-23 11:25:36
【问题描述】:

我在 html 中有一个 youtube iframe,并且在 iframe 之后有一个标题,例如:

iframe {
  display: block;
}
<iframe src="https://www.youtube.com/embed/xxxxx" width="200" height="162" align="left"></iframe>

<H4 id="example_video">Example with a video</H4>

但标题与视频在同一行。为什么?即使在 CSS 中使用display: block,我也无法改变这一点。

【问题讨论】:

    标签: html iframe youtube


    【解决方案1】:

    您说align="left" 这是设置float: left 的过时方式。

    删除它。

    iframe {
      display: block;
    }
    <iframe src="https://www.youtube.com/embed/xxxxx" width="200" height="162"></iframe>
    
    <H4 id="example_video">Example with a video</H4>

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2021-02-23
      • 1970-01-01
      • 1970-01-01
      • 2015-10-23
      • 1970-01-01
      • 2016-11-14
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多