2

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

<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>

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

4

2 回答 2

4

尝试这个:

<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>)

于 2013-03-13T23:51:06.837 回答
0
<html>
    <head>
    <title> website </title>
    <style type="text/css">
  body {
    color: #0066FF;
    background-color: #66FF33 }
  #own_color {
    color: #FFFFFF;
  }
  </style>
    </head>
    <body>
    <h1 id="own_color"> heading </h1>
    <h3> sub heading </h3>
    <p> abcdefghijklmnopqrstuvwxyz

    </body>
</html>

上面的代码仅适用于一个标头。如果您希望两个或多个标题具有相同的 CSS 样式,则需要将 # 更改为表示类的点 (.)。并输入例如:标题。

于 2013-03-13T23:55:12.667 回答