gpt4 book ai didi

html - 在对象上叠加文本

转载 作者:太空宇宙 更新时间:2023-11-04 12:54:12 26 4
gpt4 key购买 nike

我的网站上有一个 youtube 视频。我想知道是否有任何方法可以在视频顶部放置文本以为其指定特定标题。

此外,我该怎么做,但在视频的左侧?我也在使用 Bootstrap 。

最佳答案

您可以使用 z-index 或 position in-order 来执行此操作。

<div class="container">

<iframe width="560" height="315" src="//www.youtube.com/embed/YXVoqJEwqoQ" frameborder="0" allowfullscreen></iframe>
<div class="my-text"> This is my text</div>
</div>

CSS

body {
background: #efefea
}

.container {
width: 600px;
margin: 0 auto;
padding: 10px;
position: relative;
}

iframe {
marign: 0 auto;
}

.my-text {
position: absolute;
color: #fff;
padding: 10px 0px;
text-align: center;
font-size: 50px;
background: rgba(0,0,0, 0.5);
top: 20px;
left: 0;
right: 0;
}

http://jsfiddle.net/websiddu/dy4exbcp/1/

关于html - 在对象上叠加文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25955672/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com