• 的更大版本

发布于 2024-10-09 03:23:41 字数 124 浏览 4 评论 0原文

有更大版本的 吗?

• 现在它这么大,

  • 我希望它这么大,而不使用字体大小或

Is there a bigger version of ?

• Right now it is this big

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

回首观望 2024-10-16 03:23:41

您可以将其放在字体较大但行高相同的 中。

您还可以尝试 BLACK CIRCLE ●。
但我不知道有多少平台可以工作。

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.

云归处 2024-10-16 03:23:41

轻松我的朋友!检查一下:

ul{
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}
ul li::before {
    content: "● ";
    color: #2C92C5;
    padding-right: 5px;
}

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;
}
就是爱搞怪 2024-10-16 03:23:41

您还可以在 CSS 中将 font-size 设置得更高:

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

现在您可以将font-size设置为您的大小。

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.

随心而道 2024-10-16 03:23:41

一个技巧是将元素加粗

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

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

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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文