This can be done with some simple CSS.
ul {
list-style-type: "* ";
}
<ul>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ul>
This can be done with some simple CSS.
ul {
list-style-type: "* ";
}
<ul>
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ul>
Something a little bit better, this will actually centre your bullets too – as opposed to them being towards the top of the list item.
ul li {
position:relative;
list-style:none;
padding-left:15px;
}
ul li::before {
content:'*';
position:absolute;
left:0;
top:3px;
}
<ul>
<li>Lorem Ipsum</li>
<li>Lorem Ipsum</li>
<li>Lorem Ipsum</li>
</ul>
I am looking to add this point mark- ‘*’ in HTML. I need to add this to my
I need it sonething like this:
Instead of points, I need the stars.
And so on and so forth. Any help will be appreciated, Thanks!