700 Software
700 Software

Reputation: 87883

Bigger version of •

Is there a bigger version of •?

• Right now it is this big

Upvotes: 76

Views: 112277

Answers (4)

Ben
Ben

Reputation: 2033

One trick is to make the element bold

<span class="bull-element">&bull;</span> item <br />
<span class="bull-element">&bull;</span> item

<style>
    .bull-element {
        font-weight: 900;
    }
</style>

Upvotes: 1

Sammy
Sammy

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

user7874054
user7874054

Reputation: 31

You can also set the font-size in CSS higher:

.bullelements{
  font-size:2rem;
}
<html>
  <head>
  </head>
  <body>
  ...<span class="bullelements">&bull;</span>
  </body>
</html>

Now you can set the font-size to your size.

Upvotes: 3

SLaks
SLaks

Reputation: 888213

You could put it in a <span> with a bigger font but the same line-height.

You can also try BLACK CIRCLE &#x25cf; ●.
I don't know how many platforms that will work on, though.

Upvotes: 125

Related Questions