开发者

Bigger version of •

开发者 https://www.devze.com 2023-02-01 04:06 出处:网络
Is there a bigger version of 开发者_StackOverflow中文版•? • Right now it is this big

Is there a bigger version of 开发者_StackOverflow中文版•?

• Right now it is this big

  • I want it this big without using font sizes or <li>


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.


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">&bull;</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">&bull;</span> item <br />
<span class="bull-element">&bull;</span> item

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

精彩评论

暂无评论...
验证码 换一张
取 消