In my current project, I am utilizing both angularjs and node js for development. Within my index.html
, the views are being called in the following manner:
<div ng-include="'views/header/header.view.html'"></div>
<div ng-view style="height: 100%"></div>
<div ng-include="'views/footer/footer.view.html'"></div>
To ensure that my ng-view extends to the full screen, I included style="height: 100%"
. However, this has resulted in my footer overlapping with other elements on the page. This is possibly due to it rendering right after height: 100%
, specifically at the window edge.
What would be the best approach to rectify this issue?