在 XML 中的文本和 iframe 之间放置空格时出现问题
我有一个 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 技术交流群。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。原文
发布评论
评论(1)
我的猜测是,您可能误解了属性
marginheight
。marginheight
属性不定义text
和stuff
,而是框架内容与框架顶部和底部边距之间的空间(即 iframe 内部)。
在文本和 iframe 元素之间留出垂直空间的一种方法是将
包裹在
margin-
:的顶部
My guess is, that you maybe misinterpreted the attribute
marginheight
.The
marginheight
attribute does not define the space betweentext <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 amargin-top
for the<div>
:绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!