I have a list that I want to insert into a paragraph. Yet, this is not valid HTML. How can I at least imitate having a list inside a paragraph?
Share
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 can display text as a list without using list markup. At the simplest,
Of course you can use any item markers here instead of bullets.
If you need to style the items, wrap them inside inline markup:
To indent the items, for example, you would then set e.g.
.li { padding-left: em; }.