gpt4 book ai didi

html - 使用黑色 CSS 背景使我的文字变白

转载 作者:行者123 更新时间:2023-12-02 00:52:08 24 4
gpt4 key购买 nike

我的 HTML 代码有问题,我想在黑色背景上显示白色文本。但是我不知道我会怎么做。

这是我的 HTML:

<!DOCTYPE html> 
<html>
<head>
<title>Home</title>
<link rel="stylesheet" type="text/css" href="home.css">
<meta charset="UTF-8">
</head>

<body>
<main>
<header>
<h1>Site Index</h1>
</header>
<nav>
<a href="homePage.html">Home</a>
<a href="blog.html">Blog</a>
<a href="news.html">News</a>
<a href="contact.html">Contact Us</a>
</nav>
<section>
<article>
<h2>This is the section</h2>
<p style="color: #50FFFF; font-size: 16px;
text-shadow:
0px 0px 2px #1040FF,
-2px -2px 2px #1040FF,
2px -2px 2px #1040FF,
-2px 2px 2px #1040FF,
2px 2px 2px #1040FF;">
This is my home page of my test HTML web page.
Right now i am using a HTML style on this paragraph. It
uses a hexidecimal color, font size of 16 px and text shadow.
</p>
</article>
</section>
<hr>
<footer>
<strong>
Copyright &copy; 2016 Stephen Fawcett, All rights reserved
</strong>
</footer>
</main>
</body>

</html>

还有我的 CSS:

body {
background-color: #101010
}

h1 {
color: #ffffff
}

footer {
color: #ffffff
}

基本上,我希望我的页眉和页脚出现在网页上。但由于文本本身是黑色的,它不会出现在黑色背景上。如何使标题和页脚更亮?

我很感激我能得到的所有反馈。

最佳答案

如@link2pk 所建议的那样,在您的 CSS 中将 color: #ffffff; 添加到 body 将使文本默认为白色。

我还使用 nav a 在导航链接上添加了相同的颜色修改,因为蓝色在黑色背景上很难阅读,但这完全取决于您。

body {
background-color: #101010;
color: #ffffff;
}
h1 {
color: #ffffff;
}
nav a {
color: #ffffff;
}
footer {
color: #ffffff;
}
<!DOCTYPE html>
<html>

<head>
<title>Home</title>
<link rel="stylesheet" type="text/css" href="home.css">
<meta charset="UTF-8">
</head>

<body>
<main>
<header>
<h1>Site Index</h1>
</header>
<nav>
<a href="homePage.html">Home</a>
<a href="blog.html">Blog</a>
<a href="news.html">News</a>
<a href="contact.html">Contact Us</a>
</nav>
<section>
<article>
<h2>This is the section</h2>
<p style="color: #50FFFF; font-size: 16px;
text-shadow:
0px 0px 2px #1040FF,
-2px -2px 2px #1040FF,
2px -2px 2px #1040FF,
-2px 2px 2px #1040FF,
2px 2px 2px #1040FF;">
This is my home page of my test HTML web page. Right now i am using a HTML style on this paragraph. It uses a hexidecimal color, font size of 16 px and text shadow.
</p>
</article>
</section>
<hr>
<footer>
<strong>
Copyright &copy; 2016 Stephen Fawcett, All rights reserved
</strong>
</footer>
</main>
</body>

</html>

关于html - 使用黑色 CSS 背景使我的文字变白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38947902/

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