eclipse的css怎么用?
你是做jsp吗?文件结构上将CSS样式文件和网页文件分成两个文件夹放好,然后配置路径参数,然后在需要加载CSS的页面写上动态路径。
举例:
<% String path = request.getContextPath(); %> <link type="text/css" rel="stylesheet" href="<%=path%>/include/css/common.css" />