In the html below ‘Rome’ is appearing below ‘Place’ from the second line, how do I prevent that?
Thanks,
Chris.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could either go with hanging line indent or CSS3 columns, though regarding the latter you’ll have to do some investigation as to whether they’re useful in this scenario.
I usually go with old-style
since it’s simple, it works, and though there’s a bit of redundant code, it doesn’t promote nesting and it’s not that big of a mess.
I still fail to see any good, simple equivalent CSS replacement for this layout scheme.
The best one probably is either
or
You could probably find more here or in the answer to this question.
But they’re not as good as the table because they don’t adapt to the first column’s contents.
Hacks like
or
work but I wouldn’t recommend them because they both rely on certain screen dimensions.
G’luck.