現在Djangoチュートリアルその6を学習しているのですが、CSSファイルが適用されず困っております...
ディレクトリの構成は以下のようになっております。
ブラウザはgooglechrome、OSはMacOSを使用しております。
サーバーを再起動し、デベロッパーツールを立ち上げた状態で、「キャッシュの消去とハード再読み込み」を行なったのですが、スタイルが適用されることはありませんでした。
以下はindex.htmlファイルになります。
{% load static %} <html> <head> <link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}"> </head> <body> {% if latest_question_list %} <ul> {% for question in latest_question_list %} <li><a href="/polls/{{ question.id }}/">{{ question.question_text }}</a></li> {% endfor %} </ul> {% else %} <p>No polls are available.</p> {% endif %} </body> </html>
以下は「style.css」ファイルになります。
li a { color: green; } body { background: white url("images/background.gif") no-repeat; }
どなたか、ご助言頂けましたら幸いです。
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。