I'm working on an angularjs + node js application. I'm calling my views in my index.html
as follows:
<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>
I added style="height: 100%"
because without adding it my ng-view wasn't extending to the full screen.
But now my footer intersects my page. It's probably because renders right after height: 100%
i.e. the edge of the window.
How can I fix this?