在 XML 中的文本和 iframe 之间放置空格时出现问题

发布于 2024-11-06 05:41:26 字数 387 浏览 2 评论 0原文

我有一个 XML 文件,其中包含以下相关部分

<postText>
<![CDATA[text <br>
stuff<br />
<iframe width='560' height='349' src='http://www.youtube.com/embed/video'
 frameborder='0' marginheight='40px' allowfullscreen></iframe>]]>

</postText>

使用 php simplexmlloader 我可以打印此项目,但是尽管有
标签和 marginheight 变量,文本和 youtube 视频顶部之间没有空格。

I have an XML file with the following relevant section

<postText>
<![CDATA[text <br>
stuff<br />
<iframe width='560' height='349' src='http://www.youtube.com/embed/video'
 frameborder='0' marginheight='40px' allowfullscreen></iframe>]]>

</postText>

Using php simplexmlloader i am able to print this item however there is no space between the text and the top of the youtube video despite the
tags and the marginheightvariable.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

假面具 2024-11-13 05:41:26

我的猜测是,您可能误解了属性 marginheight

marginheight 属性定义text
stuff
,而是框架内容与框架顶部和底部边距之间的空间(即 iframe 内部)。

在文本和 iframe 元素之间留出垂直空间的一种方法是将 包裹在

中,并定义 margin-

的顶部

<postText>
<![CDATA[text <br>
stuff<br /><div style="margin-top: 40px;">
<iframe width='560' height='349' src='http://www.youtube.com/embed/video'
 frameborder='0' marginheight='40px' allowfullscreen></iframe></div>]]>
</postText>

My guess is, that you maybe misinterpreted the attribute marginheight.

The marginheight attribute does not define the space between text <br>stuff<br /> and the <iframe>, but the space between the frame's content and the frame's top and bottom margin (i.e. inside the iframe).

One way to have a vertical space between your text and the iframe element is to wrap the <iframe> in a <div> and define a margin-top for the <div>:

<postText>
<![CDATA[text <br>
stuff<br /><div style="margin-top: 40px;">
<iframe width='560' height='349' src='http://www.youtube.com/embed/video'
 frameborder='0' marginheight='40px' allowfullscreen></iframe></div>]]>
</postText>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文