如何在文本和浮动嵌入式 Iframe YouTube 视频之间创建空间?
我使用以下代码在我的 WordPress 博客中嵌入了 YouTube 视频:
<div style="float: right;"><iframe width="425" height="349" src="http://www.youtube.com/embed/WUHkW2Iqt8g?rel=0" frameborder="0" allowfullscreen></iframe></div>
我的问题是该视频与我在文章中的文字太接近。我在 Stack Overflow 上搜索过,但因为我没有 html 经验,所以无法自己弄清楚。我用谷歌搜索并认为我可以添加“Hspace”代码,但它不起作用。我将非常感谢任何帮助。谢谢。
I have embedded a YouTube video in my Wordpress blog with the following code:
<div style="float: right;"><iframe width="425" height="349" src="http://www.youtube.com/embed/WUHkW2Iqt8g?rel=0" frameborder="0" allowfullscreen></iframe></div>
My problem is that the video is too close to my text in the article. I have searched on Stack Overflow but - as I have no html experience - couldn't figure it out on my own. I Googled and thought I could add an "Hspace" code but it didn't work. I would greatly appreciate any help. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 div 上设置
margin-left
样式。 div 的 style 属性可能类似于style="float:right;margin-left:10px"
,您可以在其中选择您认为好看的任何尺寸。Set the
margin-left
style on the div. The div's style attribute might look likestyle="float:right;margin-left:10px"
, where you can choose whatever size you think looks good.