所以我正在做一些简单的事情并遇到问题。我想用一个句号作为索引的显示而不是像1,2,3,4这样的数字...我公然插入句号,它就像我想要的那样工作但是尺寸很小。我一直在谷歌搜索,并没有找到解决方案。有没有人知道Ascii的东西,我可以用来使这个时期看起来像一个子弹点(通常很大)所以任何使用我的程序的人都可以点击大子弹(期间)。
答案 0 :(得分:1)
使用li
HTML元素怎么样?更多信息:https://developer.mozilla.org/en-US/docs/HTML/Element/li
答案 1 :(得分:1)
我可能误解了你的问题,但你可能会使用无序列表。
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item N</li>
</ul>
答案 2 :(得分:1)
您可以使用此Wikipedia List of XML and HTML Character Entities找到更合适的角色。
例如,这些可以:
♦
)•
)‣
)◦
)⁃
)∙
)您也可以使用小写的“o”,具体取决于您的字体。
定义一个CSS类:
.periods {
font-weight: bold;
// anything else you want to style
}
你想要达到这样的目的:
<span class="periods">.</span>
然后使用这样的CSS类:
.dotted-list li {
list-style-type: disc;
// or any other style as listed in the first table on:
// https://developer.mozilla.org/en-US/docs/CSS/list-style-type
}
和列表如:
<ul class="dotted-list">
<li>entry 1</li>
<li>entry 2</li>
<li>entry 3</li>
</ul>
答案 3 :(得分:1)
您可以随时使用Unicode项目符号:
,而不是使用句点并使其变为粗体http://www.fileformat.info/info/unicode/char/2022/index.htm
在javascript字符串中,它将是"\u2022"
,它看起来像这样:•