首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

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

2012-02-14 
css文件加载不进的问题。webapplication跟目录:war-|login.jsp|common/css/pageStyle.csslogin.jsp&commonl

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 " />
少一点试试

热点排行