Having trouble updating styles on a JSP page using CSS. Here is the code snippet for linking:
<link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/css/Profile.css" />
Initially, the styling works fine, but after making changes, the updates do not reflect in the browser even after cleaning and building. For example, changing a div's color from blue to red does not show up as red in the browser, it remains blue.
The issue occurs when using Firefox Developer as the browser.
Any suggestions for a workaround would be appreciated. Thank you!