I have a div with a set of CSS properties that are essential to my application. These properties will be reused across multiple pages and components.
<div style="display: flex; flex-direction: column; height: 100%">
//inner html will vary based on context
</div>
Considering this simple html structure and the lack of data/event binding, what is the best practice in this scenario:
- Create a new CSS class,
- Create a new angular component with
inside,<ng-content></ng-content>
- Suggest another approach?