When using the select tag to display a dropdown, I am using ng-repeat in the option tag. If the ng-repeat contains a long string with a maxlength of 255 characters, how can I break it into lines to prevent overflow on the screen?
Check out this screenshot for reference
<div class="col-sm-5">
<select id="alert" name="alert" ng-model="dropdownSelectedRegion" ng-change="regionSelected(dropdownSelectedRegion)" class="admin-select-btn sans-regular-11 disposition" required>
<option value="">Select</option>
<option value="{{region.id}}" ng-selected="dropdownSelectedRegion==region.id" ng-repeat='region in RegionList'>{{region.description | subStringFilter}}</option>
</select>
</div>