'Replace spaces with bullet signs with plain css
I wanted to add the bullet sign (•) instead of the spaces to separate words; this could be easy to achieve with JavaScript but can we do this with plain CSS?
Here's the code:
<p class="text">lorem ipsum dolor sit amet</p>
<!-- the styled text should be like "lorem•ipsum•dolor•sit•amet" -->
<style>
p.text {
/* style */
}
</style>
Solution 1:[1]
Easiest way that comes to my mind is using HTML entity code for bullet circle •, which you insert between each word. So no CSS needed just HTML. Not sure if that's helpful for you.
You can do it like so:
<p class="text">lorem•ipsum•dolor•sit•amet</p>
and you would get:
lorem•ipsum•dolor•sit•ametSources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | osmonoh |
