在wordpress帖子中制作带编号的标题

时间:2018-07-06 07:07:56

标签: html wordpress html-heading

将“编号列表”项设置为“标题2”时,h2属性仅应用于文本,并且文本之前的数字仍具有段落标签的属性,如下图所示,

image

wordpress中是否有任何方法可以使数字甚至加粗并具有标题标签的属性?

1 个答案:

答案 0 :(得分:0)

您可以使用CSS自定义数字样式作为示例板

lib.d.ts
ol {
  margin: 0 0 1.5em;
  padding: 0;
  counter-reset: item;
}

ol > li {
  margin: 0;
  padding: 0 0 0 2em;
  text-indent: -2em;
  list-style-type: none;
  counter-increment: item;
  clear: borth;
  width: 100%;
  float: left;
}
ol > li h1, ol > li h2, ol > li h3 {
  display: inline
}

ol > li:before {
  display: inline-block;
  width: 1em;
  padding-right: 0.5em;
  font-weight: bold;
  text-align: right;
  content: counter(item) ".";
}