html 不能链接css文件_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:36:53
Original
1731 people have browsed it

django1.3.3
pycharm2.7.2

工程结构形如以下:
Test
     test1
     templates
           struct.html
           style.html
            style_test.css
         
struct.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>Intel Test Report Automation Center</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><link href="/templates/style_test.css" rel="stylesheet" type="text/css" title="blue"/></head><body onload="BodyOnLoad()"><div class="main">  <div class="header_bg">    <div class="header">    <div class="header_resize" style="position:relative;">    <div class="logo" href="/"></div>    <div class="intel"></div>    </div>    </div>  </div>  <div class="hbg_bg">  <div class="hbg">    <div class="hbg_resize">      <div class="menu_nav">        <div id="menu">          </div>        <div class="hbg_project"><span>{{ project }}</span></div>      </div>    </div>  </div>  </div>  <div class="content">    <div class="content_resize">	{% block content %}{% endblock %}    </div>  </div></div></body></html>
Copy after login


style.html
{% extends "struct.html" %}{% block active_index_up%}class="active"{% endblock %}{% block content %}<div class="canvas"></div>{% endblock %}
Copy after login


style_test.css
@charset "utf-8";body { margin:0; padding:0; width:1024px; color:#292929; font:normal 14px/1.8em Calibri, Helvetica, sans-serif;margin-left: auto;margin-right: auto;}div.main { padding:0; background:yellow }
Copy after login


请高手指点,不能改变样式,link不能生效。谢谢了!


回复讨论(解决方案)

应该是路径问题吧 
同级目录直接写就可以,试试,另外,你还可以通过浏览器查看样式(开发者人员工具)查看引入路径是否正确
href="style_test.css"

应该是路径问题吧 
同级目录直接写就可以,试试,另外,你还可以通过浏览器查看样式(开发者人员工具)查看引入路径是否正确
href="style_test.css"


谢谢你的回答啊
写法都试过了,不好使。浏览器查看样式 具体怎么做啊?


应该是路径问题吧 
同级目录直接写就可以,试试,另外,你还可以通过浏览器查看样式(开发者人员工具)查看引入路径是否正确
href="style_test.css"


访问的时候一直出现如下,路径试了好多,依然
Quit the server with CTRL-BREAK.
[17/Apr/2014 11:15:12] "GET / HTTP/1.1" 200 2974
[17/Apr/2014 11:15:12] "GET /templates/style_cht.css HTTP/1.1" 404 2056
[17/Apr/2014 11:15:12] "GET /images/bbbbbbbb.png HTTP/1.1" 404 2044
[17/Apr/2014 11:15:12] "GET /templates/images/bbbbbbbb.gif HTTP/1.1" 404 2074
不知道问什么,感觉一直是找不到相关路径!

我也是这个问题,请问你解决了吗 ,怎么解决的呀?

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template