In the process of developing my application, I have implemented various custom directives and I am concerned about ensuring they are displayed correctly across all modern browsers. I am considering whether there is a point in the angular lifecycle where I can identify custom elements and add a specific class to them. This would allow me to uniformly style them and apply individual styles as required.
While I understand that this could be done within each directive individually, I am looking for a more global solution that does not require repetitive configuration for every new directive. Any suggestions or insights on how to achieve this?