I am faced with the task of incorporating two CSS classes into a single xhtml
.
For instance:
Take, for example, display.xhtml
, which will be utilized by two different applications, each requiring its own CSS styling.
This means that if display.xhtml
is viewed in one application,
- I should use
A.css
; whereas if it's opened in another, - I would need to implement
B.css
.
How can I address this issue? Are there alternative approaches to achieve the desired outcome?