gpt4 book ai didi

html - HTML 颜色中的 CSS

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

我想制作一个特定颜色的标题,但只有那个标题,没有别的,但它对我不起作用。

<html>
<head>
<title> website </title>
<style type="text/css">
body {
color: #0066FF;
background-color: #66FF33 }
</style>
</head>
<body>
<h1> heading </h1>
<h3> sub heading </h3>
<p> abcdefghijklmnopqrstuvwxyz

</body>
</html>

我只希望标题改变颜色。如果您还可以告诉我如何单独更改文本和子标题颜色,那就太好了。

最佳答案

试试这个:

<style type="text/css">
h1 {
color: #0066FF;
background-color: #66FF33 } /* this will change all h1 tags (heading) */

h3 {
color:red; } /* this will change all h3 tags (sub-heading) */

p {
color:blue; } /* this will change all paragragh (P) tags */

/* And a few more examples: */

.someClass { color:green; } /* this will change all elements with the attribute class="someClass" to green */

#someID { color: purple; } /* this will change an element with the id of someID to purple (there should only be one) */
</style>

这将更改 <h1> 的样式, <h3> , 和 <p>标签。您还缺少结束段落标记 ( </p> )

关于html - HTML 颜色中的 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15398693/

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