I'm having trouble aligning the text. I need two columns: one with numbers and one with text, for example:
1 Input one
2 Entry two
3 Input three
4 Input five
5 Introduction six
The left column is Georgia, and the right column is Arial (several different font sizes). I could have a div container for each line and absolutely position the number and paragraphs of text at the top or bottom, which works fine. The problem is that I have to give each line a fixed height so that it displays correctly, which causes a problem if the text needs to flow over several lines (which may well do since the text entries are dynamic). A.
I want to do this without using a table and without using absolute positioning so that individual text entries can span more than one row (and are compatible with multiple browsers).
deshg source
share