I am currently experiencing the below issue where I do not want the word Samples wrapped in a border, I would like it to say Samples (no border around it) with a <hr below it and then a list of divs below it that DOES have a border. I am not sure why Samples is being bordered here as it is outside of my bordered div. Note I am sure that there is no other bordered div wrapping this html. Screenshot and HTML below:
HTML:
<div class="col-md-12" style="margin-top: 75px"> <h3 class="pull-left" style="font-size: 45px">Samples</h3> </div> <div class="col-md-12"> <hr> </div> <div ng-controller="SamplesQueryController"> <div style="border: 1px solid #000000"> <div ng-repeat="item in data" style="margin-left: 14px"> <a href="#/sample/{{item.id}}" style="font-size: 34px; text-decoration: underline">{{item.name}}</a> <br> <span style="font-size: 20px">{{item.description}}</span><br> <hr> </div> </div> </div>