gpt4 book ai didi

html - 在背景图像上重叠文本

转载 作者:太空狗 更新时间:2023-10-29 12:24:56 25 4
gpt4 key购买 nike

我正在使用 Bootstrap,我想要一个背景图像,并在其上放置一些文本、图像或其他内容。问题是 Bootstrap CSS 显示具有某种背景的元素,当然会破坏结果。

可以看例子with Bootstrap herewithout bootstrap here .

如何删除这个默认的后台 Bootstrap 使用?

代码是:

HTML

<center><div>
<h1>This is a test</h1>
</div></center>

CSS

html { 
width: 100%;
height: 100%;
background: url('http://static.panoramio.com/photos/original/24446619.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
filter: opacity(0.9);
-webkit-filter: opacity(0.9);
-moz-filter: opacity(0.9);
-o-filter: opacity(0.9);
}

最佳答案

Bootstrap 在代码的前几行中如下设置 body 的 css body { background-color: #fff; } .我对此的建议是进入您的 bootstrap.css 文件并删除该 css。

如果您使用的是 cdn,您可以在获得 <link> 后添加以下内容到引导 css:

<style>
body { background-color: inherit; }
</style>

这将覆盖加载的 Bootstrap css。

在这里查看我对你的 fiddle 的更新:http://jsfiddle.net/1Ldykff2/2/

关于html - 在背景图像上重叠文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30065247/

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