i have several CSS styles i would need to include in the JSP page, however, i have multiple JSP where i include in a main JSP. I can’t modify the main JSP, but only be able to put them into the included JSPs.
May i know if i may have a tag in each JSP so that i may put my page level CSS?
<head>
<style type="text/css">
.oneOffcosts_totalDescription{
color: #006685;
margin-left:35px;
border:1px solid #dedede;
width:300px;
float:left;
display:inline;
}
.oneOffcosts_totalCost{
font-weight:bold;
border:1px solid #dedede;
width:100px;
float:left;
display:inline;
}
</style>
</head>
Thanks!
Add a include-prelude in the jsp-property-group in web.xml for the jsps which you want the content to be added.