Reputation: 87883
Is there a bigger version of •
?
• Right now it is this big
<li>
Upvotes: 76
Views: 112277
Reputation: 2033
One trick is to make the element bold
<span class="bull-element">•</span> item <br />
<span class="bull-element">•</span> item
<style>
.bull-element {
font-weight: 900;
}
</style>
Upvotes: 1
Reputation: 81
Easy my friend! Check this:
ul{
list-style-type: none;
margin-left: 0;
padding-left: 0;
}
ul li::before {
content: "● ";
color: #2C92C5;
padding-right: 5px;
}
Upvotes: 7
Reputation: 31
You can also set the font-size
in CSS higher:
.bullelements{
font-size:2rem;
}
<html>
<head>
</head>
<body>
...<span class="bullelements">•</span>
</body>
</html>
Now you can set the font-size
to your size.
Upvotes: 3
Reputation: 888213
You could put it in a <span>
with a bigger font but the same line-height
.
You can also try BLACK CIRCLE ●
●.
I don't know how many platforms that will work on, though.
Upvotes: 125