Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不愿意将特定于 portlet 的 JS 或 CSS 放入其中,除非<portlet:namespace />它们也适用。只希望我选择使用的函数/变量名或类名足够独特是一种好习惯吗?
<portlet:namespace />
我建议您在 CSS 文件中使用 Portlet ID 作为前缀,例如:
#webform_WAR_webformportlet_somedivid { color: black; }
它看起来不漂亮,但它应该是唯一的,因为在同一个 WAR 文件中不应该有任何其他具有相同名称的 portlet。
也许其他人有更好的主意?!