2

特定の色の見出しを作成したいのですが、その 1 つの見出しだけで他には何もありませんが、うまくいきません。

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

上記のコードは、1 つのヘッダーのみを対象としています。2 つ以上のヘッダーに同じ CSS スタイルが必要な場合は、# をクラスを表すドット (.) に変更する必要があります。たとえば、次のように入力します。

于 2013-03-13T23:55:12.667 に答える