gpt4 book ai didi

html - 在 HTML + CSS 中使文本显示在背景之上

转载 作者:行者123 更新时间:2023-11-28 02:37:38 25 4
gpt4 key购买 nike

大家好,这是我制作的第一个网页,我正在尝试将 gif 显示为背景并在其上方显示文本。一切正常,除了我似乎无法在 gif 背景上方显示文本.. 正如您在源代码中看到的那样,我有一个标题和三个段落,有人知道如何解决这个问题吗?

<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="http://www.iconarchive.com/download/i91751/icons8/windows-8/Systems-Linux.ico" type="image/x-icon"/>
<title>FirstWebpage</title>

<style>
body{ /* Will use a gif as background */
background-image: url('http://images.eurogamer.net/2015/articles/1/8/7/1/5/3/2/san-francisco-subway-system-hacked-passengers-get-free-rides-148033947612.gif');
background-position: relative;
background-size: cover;
}


</style>
<audio autoplay loop>
<source src="seffelinie.mp3" type="audio/mp3">

</head>
<body>
<div align="center" id="text">
<h1>First Webpage</h1>
<p>HTML</p>
<p>+</p>
<p>CSS</p>
</div>
</body>
</html>

最佳答案

我猜 Audio 标签在文本之上,替换为:

<audio autoplay loop> 
<source src="seffelinie.mp3" type="audio/mp3">
</audio>

关于html - 在 HTML + CSS 中使文本显示在背景之上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46163378/

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