Is there a bigger version of •
?
• Right now it is this big
- I want it this big without using font sizes or
<li>
Is there a bigger version of •
?
• Right now it is this big
<li>
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.
∙
and ∙
renders as this: ∙ I guess it depends on your font. –
Inerrant 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;
}
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.
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>
© 2022 - 2024 — McMap. All rights reserved.
∙
aka∙
. – Bramante