0
   .cssnav  {
                        position:relative;
                        font-family: arial, helvetica, sans-serif;
                        background-image:  url(img/twitter.jpg)no-       repeat center center;
                        background-repeat: no-repeat;
                        white-space: nowrap;
                        display: block;
                        width: 211px;
                        height: 44px;
                        margin: 0;
                        padding: 0;
            }
            .cssnav a {
                        display: block;
                        color: #000000;
                        font-size: 11px;
                        width: 211px;
                        height: 44px;
                        display: block;
                        float: left;
                        color: black;
                        text-decoration: none;
            }

            .cssnav img {width: 211px; height: 44px; border: 0; }
            * html a:hover {visibility:visible}
            .cssnav a:hover img{visibility:hidden}

            .cssnav span {
                        position: absolute;
                        left: 30px;
                        top: 15px;
                        margin: 0px;
                        padding: 0px;
                        cursor: pointer;
                        width: 149px;
                        height: 14px;
                        text-align: center;
            }
            /* END OF NAVIGATION */


  }



<html>

    <head>
        <title>The history of aeronautics</title>

        <meta charset="utf-8" />
        <meta name="description" content="A parallax scrolling experiment using          jQuery" />

        <link rel="stylesheet" media="all" href="css/test.css" />

    </head>

    <body>




                <!--MAIN NAVIGATION START-->

                <div class="cssnav"><a href="http://www.search-this.com/" title="Search Engine Submission"><img src="img/twitter.png" alt="Search Engine Submission" /><span>Search
                  Engine Submission</span></a></div>
                <div class="cssnav"><a href="http://www.search-this.com/website-design/" title="Website Design"><img src="img/twitter.jpg" alt="Website Design" /><span>Website
                  Design</span></a></div>




    </body>

</html>

CSS と HTML を含めました。なぜそれが機能しないのかを理解しようとしてしばらくこれに取り組んできました...私はここからtrifectaロールオーバーボタンコードを使用しています: http://www.webcredible.co.uk/user-friendly-resources/css /rollover-buttons.shtml

コードをHTMLの領域に配置すると機能しますが、CSSに配置すると機能しません

4

1 に答える 1

0

まず、Mat が言ったように、以下を追加して、リンクされたスタイル シートが必要です。

<link href="/fileName.css" rel="stylesheet" type="text/css" media="screen" />

head タグ内。または、次のようなスタイル タグを追加することもできます (head タグ内にも):

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

それ以外で、まだ問題がある場合は、こちらをご覧ください。

http://coding.smashingmagazine.com/2007/07/27/css-specificity-things-you-should-know/

ただし、CSS の特異性の規則については、一般的な経験則 (私が使用したもの) として、レンダリングするように指定したものが外部 css ファイルでレンダリングされない理由を正確に特定できない場合に備えて、次のようにインラインで使用します。

<p style="background-color: #f00;">Paragraph contents...</p>

これは、インライン CSS が外部ファイルの CSS よりも (本質的に) 特異性が高いためです。

于 2013-02-21T21:43:05.370 に答える