读书人

css 文件加载不进的有关问题

发布时间: 2012-02-14 19:19:19 作者: rapoo

css 文件加载不进的问题。
web application 跟目录:
war -|login.jsp
|common/css/pageStyle.css

login.jsp & common locate at the root directory.

in login.jsp , I coded like this :

<link href = "common/css/pageStyle.css " rel = "stylesheet " type = "text/css " />
or this :
<link href = "../common/css/pageStyle.css " rel = "stylesheet " type = "text/css " />

it doesn 't work either .

why ?

The CSS File just define the style of the body tag:
body {
background-color : #FEFEFE
}


[解决办法]
<link href = "./common/css/pageStyle.css " rel = "stylesheet " type = "text/css " />
少一点试试

读书人网 >JavaScript

热点推荐