css实现各级标题自动编号

本文在博客同步发布,您也可以在这里看到最新的文章

Markdown编辑器大多不会提供分级标题的自动编号功能,但我们可以通过简单的css样式设置实现。

本文介绍了使用css实现各级标题自动编号的方法,本方法同样适用于typora编辑器和wordpress主题。

1 实现效果

本文将实现以下效果:

本文示例

相应html代码如下:

<!DOCTYPE html>
<html><head><meta charset="utf-8"><title>实现各级标题自动编号</title></head><body><div id='write'><h1>实现效果</h1><h1>实现思路</h1><h1>应用实例</h1><h2>Typora</h2><h2>WordPress Sakurairo主题</h2></div><p><b>注意:</b> IE8 需要指定 !DOCTYPE 才可以支持该属性。</p></body>
</html>

2 实现思路

2.1 步骤一:编写标题内容

使用h1~h6区域标题标签设置标题内容,标签的具体用法可以参考这篇文档。

本文的示例仅用到前两级标题。

出于设置方便考虑,建议您将含标题在内的文本区域放在一个<div>标签中,就如示例这样做。

2.2 步骤二:设置编号

分为以下三个步骤:

  1. 定义并初始化序号变量
  2. 设置序号增量
  3. 调用序号变量

2.2.1 定义并初始化序号

使用counter-reset属性进行初始化,具体的用法可以参考这篇文档。

1、一级标题

在上一层标签的样式表中初始化。在本例中,在#write的css中初始化。

2、二级即下层标题

在上一级标题的样式表中初始化。

#write {counter-reset: h1
}h1 {counter-reset: h2
}

在代码中,counter-reset属性做了两件事:首先,定义了序号变量h1h2(变量名随您喜好,也可以叫别的);其次,给序号变量设置了一个初始值,默认为1,也可以显式地初始化为其它值,例如下面的代码将序号变量初始化为了5:

h1{counter-reset:h2 5;
}

2.2.2 设置序号增量

counter-increment属性可以使标题编号增加或减少,具体的用法可参考这篇文档。

#write h1{counter-increment: h1;
}
#write h2{counter-increment: h2;
}

以上代码可以使2.2.1中声明的变量自增1。

2.2.3 调用序号变量

使用伪类::before可以对元素的第一个子元素进行设置,结合content属性,可以为第一个子元素添加修饰性的内容。

#write h1::before{counter-increment: h1;content: counter(h1) " ";
}
#write h2::before {counter-increment: h2;content: counter(h1) "." counter(h2) " ";
}

上述代码在2.2.2的基础上添加了::beforecounter属性。

counter属性中,我们通过counter()函数取到相应变量的值,并通过字符串设置连接各级序号的分隔符。

设置好编号格式后,再通过::before伪类将content属性的内容设置为在标题标签之前显示。

这样,就大功告成了。

3 完整代码

完整的h5代码如下所示:

<!DOCTYPE html>
<html><head><meta charset="utf-8"><title>实现各级标题自动编号</title></head><style>#write {counter-reset: h1;}#write h1{counter-reset: h2;}#write h1::before{counter-increment: h1;content: counter(h1) " ";}#write h2::before {counter-increment: h2;content: counter(h1) "." counter(h2) " ";}</style><body><div id='write'><h1>实现效果</h1><h1>实现思路</h1><h1>应用实例</h1><h2>Typora</h2><h2>WordPress Sakurairo主题</h2></div><p><b>注意:</b> IE8 需要指定 !DOCTYPE 才可以支持该属性。</p></body>
</html>

上述代码可以在菜鸟教程在线编辑器 (runoob.com)在线测试,验证本文示例的效果。

4 应用实例

4.1 Typora

代码添加位置:主题目录下的base.user.css文件。

#write {counter-reset: h1
}h1 {counter-reset: h2
}h2 {counter-reset: h3
}h3 {counter-reset: h4
}h4 {counter-reset: h5
}h5 {counter-reset: h6
}/** put counter result into headings */
#write h1:before {counter-increment: h1;content: counter(h1) " "
}#write h2:before {counter-increment: h2;content: counter(h1) "." counter(h2) " "
}#write h3:before,
h3.md-focus.md-heading:before /** override the default style for focused headings */ {counter-increment: h3;content: counter(h1) "." counter(h2) "." counter(h3) " "
}#write h4:before,
h4.md-focus.md-heading:before {counter-increment: h4;content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) " "
}#write h5:before,
h5.md-focus.md-heading:before {counter-increment: h5;content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) " "
}#write h6:before,
h6.md-focus.md-heading:before {counter-increment: h6;content: counter(h1) "." counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) ". "
}/** override the default style for focused headings */
#write>h3.md-focus:before,
#write>h4.md-focus:before,
#write>h5.md-focus:before,
#write>h6.md-focus:before,
h3.md-focus:before,
h4.md-focus:before,
h5.md-focus:before,
h6.md-focus:before {color: inherit;border: inherit;border-radius: inherit;position: inherit;left:initial;float: none;top:initial;font-size: inherit;padding-left: inherit;padding-right: inherit;vertical-align: inherit;font-weight: inherit;line-height: inherit;
}

官方文档:Auto Numbering for Headings - Typora Support

4.2 WordPress Sakurairo主题

代码添加位置:css/theme/sakura.css,可以在”后台-外观-主题文件编辑器“或登录服务器进行修改。

/* 文章标题自动编号 */
.post  .entry-content{counter-reset: h1Counter;
}
.post  .entry-content h1{counter-reset: h2Counter;
}
.post  .entry-content h2{counter-reset: h3Counter;}
.post  .entry-content h3{counter-reset: h4Counter;}
.post  .entry-content h4{counter-reset: h5Counter;
}.post  .entry-content h1:before{counter-increment: h1Counter;content: counter(h1Counter) " "
}
.post .entry-content h2:before{counter-increment: h2Counter;content: counter(h1Counter) "." counter(h2Counter) " "}
.post  .entry-content h3:before{counter-increment: h3Counter;content: counter(h1Counter) "." counter(h2Counter)"." counter(h3Counter) " "
}
.post .entry-content h4:before{counter-increment: h4Counter;content: counter(h1Counter) "." counter(h2Counter) "." counter(h3Counter) "." counter(h4Counter) " "
}
.post .entry-content h5:before{counter-increment: h5Counter;content: counter(h1Counter) "." counter(h2Counter) "." counter(h3Counter) "." counter(h4Counter) "." counter(h5Counter) " "
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/302130.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

有没有适合运动佩戴的耳机?最适合运动使用的开放式耳机推荐

哪种耳机更适合运动&#xff0c;挂耳式和入耳式哪种更合适呢&#xff1f;答案是挂耳式的耳机更适合运动&#xff0c;适用的场景也更多。无论你是在家还是在外面运动&#xff0c;都很合适。挂耳式耳机也可以叫开放式耳机&#xff0c;它开放式的设计可以让我们更好的感知到周围嘈…

1132A安捷伦1132A示波器探头

181/2461/8938产品概述&#xff1a; 带宽: 输入阻抗: 差分输入R: 50千欧差分输入C: 0.27-0.34 pF单端输入电阻:25千欧单端输入C: 0.44-0.67 pF 连通性: E2669A差分/单端连接套件E2668A单端连接套件用于InfiniiMax探头的E2675A差分浏览器套件E2677A InfiniiMax 12 GHz差分焊…

APx500音频分析仪硬件简介

两通道模拟输出&#xff0c;两通道或以上的模拟输入接口 线性编码数字音频接口&#xff08;AES/EBU,TOSLINK,SPDIF&#xff09;Linear PCM 脉冲密度调制码流&#xff08;需要APx-PDM选件支持&#xff09; Bluetooth蓝牙音频码流&#xff08;需APx-BT选件支持&#xff09; 最…

DataGrip 2024 for Mac/Win—数据库管理的得力助手

在当今的数据驱动世界中&#xff0c;高效地管理数据库至关重要。无论您是数据库管理员、开发人员还是数据分析师&#xff0c;DataGrip 2024 都是您不可或缺的工具。 DataGrip 2024 适用于 Mac 和 Win 系统&#xff0c;具有以下卓越特性&#xff1a; 全面支持多种数据库&#…

uniapp请求后端接口

新建文件夹utils const request (config) > {// 拼接完整的接口路径config.url http://mm.test.cn config.url;//这里拼接的是访问后端接口的地址&#xff0c;http://mm.test.cn/prod-api/testconsole.log(config.url)//判断是都携带参数if(!config.data){config.data …

【方法】PDF密码如何取消?

对于重要的PDF文件&#xff0c;很多人会设置密码保护&#xff0c;那后续不需要保护了&#xff0c;如何取消密码呢&#xff1f; 今天我们来看看&#xff0c;PDF的两种密码&#xff0c;即“限制密码”和“打开密码”&#xff0c;是如何取消的&#xff0c;以及忘记密码的情况要怎…

Android Studio 生成 keystore 签名文件及打包验证流程

一、创建keystore签名文件 1、在菜单栏中&#xff0c;依次点击 Build - Generate Signed Bundle/Apk...(生成签名) 2、选择 APK 选项&#xff0c;点击按钮 Next 到下一步 3、新建key store秘钥文件&#xff0c;点击按钮 Next 到下一步 4、按如下提示填写信息&#xff0c;点击按…

Java的Maven下载和配置步骤

Maven的下载 https://maven.apache.org/download.cgi 以Windows10版本为列&#xff0c;下载如图所示的格式&#xff1a; Maven的环境配置 以Windows10为例&#xff0c;进行环境变量的配置 在点击环境变量按钮之后选择系统变量&#xff0c;首先点击新建,把这两个参数如下图输…

Python 绘制饼图

import matplotlib.pyplot as plt # 数据 labels [A, B, C, D] sizes [20, 30, 40, 10] # 饼图 plt.figure(figsize(5, 5)) plt.pie(sizes, labelslabels, autopct%1.1f%%, startangle90) #startangle 初始角度 plt.rcParams[font.sans-serif] [Times New Roman] plt.axis(e…

SUSE Linux Enterprise Server安装

1. SUSE镜像下载 下载地址&#xff1a;Evaluation Copy of SUSE Linux Enterprise Server | SUSE 选择自己需要的版本和对应的架构 选择下载SLE-15-SP5-Full-x86_64-GM-Media1.iso&#xff0c;下载时需要注册请按照提示进行注册。 2. 安装SUSE Linux 安装时可以通过连接服务…

三、SpringBoot3 整合 SpringMVC

本章概要 实现过程web 相关配置静态资源处理自定义拦截器(SpringMVC 配置) 3.1 实现过程 创建程序引入依赖 <?xml version"1.0" encoding"UTF-8"?> <project xmlns"http://maven.apache.org/POM/4.0.0"xmlns:xsi"http://www…

7-26 单词长度

题解&#xff1a; #include <bits/stdc.h> using namespace std; int main() {string s;getline(cin,s); //读取一行字符串char c; //记录字符int cnt 0; //用来记录长度int flag 0; //用来判断是否已经输出了第一个单词的长度for (int i 0;i<s.size(); i)…

Vue3 + Vite 构建组件库发布到 npm

你有构建完组件库后&#xff0c;因为不知道如何发布到 npm 的烦恼吗&#xff1f;本教程手把手教你用 Vite 构建组件库发布到 npm 搭建项目 这里我们使用 Vite 初始化项目&#xff0c;执行命令&#xff1a; pnpm create vite my-vue-app --template vue这里以我的项目 vue3-xm…

如何将本地项目代码上传到github代码托管平台上【小白教程】

大家好&#xff0c;我是 Just&#xff0c;这里是「设计师工作日常」&#xff0c;今天分享的是本地代码怎么上传到代码托管平台上。 最新文章通过公众号「设计师工作日常」发布。 目录 引子前提创建仓库仓库创建完成git 本地仓库初始化本地仓库&#xff08;本地项目代码&#x…

day76 jquery

知识点: 1 在HTML中引入jQuery 2 jQuery中就绪函数 3 jQuery中选择器 4 使用jQuery获取表单元素的值 及标签中间的内容 5 jQuery中获取标签属性 6 jQuery设置和获取标签样式 ----------------------------------- 一 在HTML中引入jQuery 1/*! jQuery…

经典文献阅读之--LESS-Map(长期定位轻量级和逐渐演进的语义地图方案)

0. 简介 精确且长期稳定的定位对于停车场内的行车任务&#xff0c;如自动驾驶或自动代客泊车等&#xff0c;至关重要。现有方法依赖于固定且内存效率低下的地图&#xff0c;缺乏强大的数据关联方法&#xff0c;不适用于精确的定位或长期地图维护。《LESS-Map: Lightweight and…

律所如何做好内容运营,提升品牌影响力

近年来&#xff0c;随着品牌推广方式的改变&#xff0c;中国律所也开始关注内容营销&#xff0c;期待能够凭借内容营销增强影响力。今天&#xff0c;媒介盒子就从内容传播的逻辑出发&#xff0c;和大家聊聊律所如何做好内容运营&#xff0c;提升品牌影响力。 一、品牌形象管理 …

ios swift5 “Sign in with Apple“(使用苹果登录)怎样接入(第三方登录)集成AppleID登录

文章目录 截图1.在开发者网站的app id中添加Sign in with Apple功能2.在Xcode中添加Sign in with Apple功能3.代码&#xff1a;只有第一次登录的时候可以获取到用户名参考博客chatGPT答案 截图 1.在开发者网站的app id中添加Sign in with Apple功能 1.1 如果你新建app id,记得在…

美特杰橡胶管诚邀您参观2024第13届生物发酵展

参展企业介绍 美特杰橡胶管(上海)有限公司秉持深厚的专业化职业精神。创新材料、独特设计、优良性能、工作细致是我公司市场原则的关键品质。 公司结构: 美特杰十分重视团队精神。通过与同事和商务伙伴保持积极的合作与彼此尊重&#xff0c;持续推进我们的业务发展&#xff0c…

Qt使用QWidget重绘实现圆环形渐变色进度条(支持不确定进度模式)

效果如下&#xff1a; 从纯竖直方向顶部蓝色到底部青色的渐变。 从左上角偏左45到右下角偏右45的蓝色到青色渐变。 从左上角偏左22.5到右下角偏右22.5的蓝色到青色渐变。&#xff08;这个角度渐变最好看&#xff09; 可以选择添加背景图片 支持两种模式&#xff1a;正常进度模…