suppose I have an inline styling such as below inside a .JSP file:
<style>
.bg{
background-color: <%=application.getAttribute("bgcolor").toString()%>
}
</style>
What if I want to make it an external .CSS file instead of using inline styling? I tested it and it doesn't work properly?
Many thanks!