Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bigger version of •

Is there a bigger version of •?

• Right now it is this big

  • I want it this big without using font sizes or <li>
like image 400
700 Software Avatar asked Dec 23 '10 18:12

700 Software


3 Answers

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.

like image 176
SLaks Avatar answered Nov 16 '22 01:11

SLaks


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;
}
like image 43
Sammy Avatar answered Nov 16 '22 01:11

Sammy


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.

like image 37
user7874054 Avatar answered Nov 16 '22 01:11

user7874054