I have a Container that loads multiple views
<md-content flex id="content">
<div ng-view></div>
</md-content>
For Example one of those views loaded looks like this
<div layout="column" id="selection-whiteframe" ng-controller="MathCtrl">
[Header Row Here]
<md-content id="MathContent">
[SomeContent]
</md-content>
</div>
The Problem is, that if there is too much Content in "MathContent", the NG-View Div becomes Scrollable and not the "MathContent" Md-Content whats not wanted because the [Header Row] should have a fixed position.
Is it somehow possible to prohibit an Element (for example the ng-view) from beeing scrollable or can I lock the Maximum Size of selection-whiteframe to the height of the ng-view?