I have two arrays:
$scope.code1 = [5,24,1,5,8,10];
$scope.code2 = [1,1,2,2,3,4,5];
I want to have the template look something like this:

Though I am having trouble getting it to look that way. My current code is along the lines of:
<div style="position:absolute">
<div style="float:left;margin-right:5px;">Code 1</div>
<div style="float:left" ng-repeat="code in code1 track by $index"> <!-- I ng-repeat this -->
<div>{{$index}}</div>
<div style="border:1px #000 solid;">{{code}}</div>
</div>
</div>
How do I get my HTML/CSS to look like what I am wanting to show in my picture above?
ng-repeatattribute in your markup? why dont you at least try something and see what happens?