I have a CSV spreadsheet with data that looks like this:
<p>Features:• first feature• second feature• third feature• fourth feature• and so on (the total number of features is variable)</p>
I want each feature to display on a new line without adding any HTML tags, like this:
Features:
• first feature
• second feature
• third feature
• fourth feature
• and so on (the total number of features is variable)
Is it possible to achieve this using CSS ?!
(javascript allowed)
Thank you.