I have a list of items where each item can be of varying lengths horizontally: https://i.sstatic.net/ITIQd.png The issue is that long items are getting cut off on the right side. Here's the code snippet I am currently using:
<md-list-item ng-repeat="element in standard_xsd_elements track by $index" ng-click="null">
<p style="white-space: pre;"> {{element}} </p>
</md-list-item>
Is there a way to display a scrollbar for long items instead of having them truncated?