I am currently working with a dynamic table
that has the following structure:
Here is the code for the table:
table
tr
td LOCATIONS
tr(ng-repeat="location in currentSchools.Locations")
td
td {{location}}
Since the table is dynamic, using Angular's ng-repeat
, I am facing an issue where the listed locations do not start on the same level as the word LOCATIONS
. How can I adjust the code to achieve this alignment?
I attempted to use CSS by applying negative margin-top on the second tds, but unfortunately, it did not produce the desired result.