是否可以将这样的css模板实现到我的jsp中?

时间:2011-04-07 18:30:17

标签: css jsp

我有一个使用jsp制作的网站,我需要对其进行样式化。我可以以某种方式在我的jsp中实现像这样的css模板吗? css template

若然,怎么样?

谢谢!

1 个答案:

答案 0 :(得分:1)

是。这绝对是可能的。 Here is a tutorial on JSP templates。它教你如何使用include指令,它允许你包含静态内容,如HTML文件,如:

<%@include file='header.html'%>

或允许您使用

包含模板的模板标记库
<%@ taglib uri='/WEB-INF/tlds/template.tld' prefix='template' %>

<html><head><title><template:get name='title'/></title></head>
<body background='graphics/background.jpg'>

<table>
   <tr valign='top'><td><template:get name='sidebar'/></td>
      <td><table>
            <tr><td><template:get name='header'/></td></tr>
            <tr><td><template:get name='content'/></td></tr>
            <tr><td><template:get name='footer'/></td></tr>
         </table>
      </td>
   </tr>
</table>
</body></html>

从模板或原始JSP文件中,您绝对可以引用CSS。这很简单。您可以像定期那样在JSP中引用HTML标记中的CSS:

<link rel="stylesheet" href="common.css" type="text/css">

有关详细信息,请参阅W3