I have a list of items denoted by the "li
" tag, and I am looking for a way to display them horizontally or in a neat format.
Below is the HTML code snippet:
<!doctype html>
<html lang="en" ng-app="app">
<head>
...
</head>
<body>
...
The "li
" tags and the corresponding result are shown below:
**<li ng-repeat="re in value.request""list-group-item">
{{re.Field}} {{re.length}} {{re.value}}</li>**
</ul></li>
DE-000 004 0110
DE-001 008 00110010 00111010 00000000 00000000 00001110 11000001
10000000 00000010
DE-003 006 003000
...
I want to format this data so that it displays properly aligned as shown below:
DE-000 004 0110
DE-001 008 00110010 00111010 00000000 00000000 00001110 11000001
10000000 00000010
DE-003 006 003000
...
I've tried using tables for formatting, but the alignment gets disrupted with each loop iteration. Is there a way to achieve proper alignment without using tables?