I have something like below. Book name (can be variable length, got from an ajax call), price, and quantity. Is there a way I can align each field using CSS instead of using a table to do that? Thanks.
e.g. HTML output:
Emacs Handbook $10 1 Web Development In 10 Days $20 2 Car $8 3
I want:
Emacs Handbook $10 1 Web Development In 10 Days $20 2 Car $8 1
There’s nothing wrong with using tables. If it’s tabular data (ie something one would expect in an excel spreadsheet or a database table), it still belongs in a table.
If you must insist, you could put each of those in a span inside a list item and then style them:
HTML:
CSS: