当前位置: 首页 > article >正文

css之选择第一个或最后一个元素、第n个标签、选择偶数或奇数标签、选择最后n个标签、等差数列标签的选择、first、last、nth、child

MENU

  • first-child选择列表中的第一个标签
  • last-child选择列表中的最后一个标签
  • nth-child(n)选择列表中的第n个标签
  • nth-child(2n)选择列表中的偶数位标签
  • nth-child(2n-1)选择列表中的奇数位标签
  • nth-child(n+m)选择从第m个到最后一个标签
  • nth-child(-n+m)选择从第1个到第m个
  • nth-last-child(3)选择最后3个标签
  • nth-last-child(3n)选择3倍数位的标签
  • nth-last-child(3n-1)选择等差数列的标签


first-child选择列表中的第一个标签

li:first-child {
    color: red;
}

last-child选择列表中的最后一个标签

li:last-child {
    color: pink;
}

nth-child(n)选择列表中的第n个标签

li:nth-child(3) {
    color: pink;
}

nth-child(2n)选择列表中的偶数位标签

li:nth-child(2n) {
    color: pink;
}

nth-child(2n-1)选择列表中的奇数位标签

li:nth-child(2n-1) {
    color: pink;
}

nth-child(n+m)选择从第m个到最后一个标签

li:nth-child(n+5) {
    color: pink;
}

nth-child(-n+m)选择从第1个到第m个

li:nth-child(-n+5) {
    color: pink;
}

nth-last-child(3)选择最后3个标签

li:nth-last-child(3) {
    color: pink;
}

nth-last-child(3n)选择3倍数位的标签

li:nth-last-child(3n) {
    color: pink;
}

nth-last-child(3n-1)选择等差数列的标签

li:nth-last-child(3n-1) {
    color: pink;
}

http://www.kler.cn/a/147453.html

相关文章:

  • SwanLab安装教程
  • Qt文件目录操作
  • 三:网络为什么要分层:OSI模型与TCP/IP模型
  • linux病毒编写+vim shell编程
  • kubesphere环境-本地Harbor仓库+k8s集群(单master 多master)+Prometheus监控平台部署
  • 多窗口切换——selenium
  • 学习Qt的网站
  • git突然失效:无法提交的问题 无法推送到远程仓库
  • 为什么API管理工具对开发人员有益?
  • Vue中的深度监听Deep Watch
  • 第十七章 处理空字符串和 Null 值 - XMLIGNORENULL、XMLNIL 和 XMLUSEMPTYELEMENT 的详细信息
  • Node.js下载安装及配置镜像源
  • element plus中表格的合计属性和例子
  • 0001Java程序设计-springboot基于微信小程序批发零售业商品管理系统
  • Git的原理与使用(一):Git的基本操作(包含:版本回退)
  • 深度学习18
  • 【数据结构】树与二叉树(廿二):树和森林的遍历——后根遍历(递归算法PostOrder、非递归算法NPO)
  • [ CSS ] 内容超出容器后 以...省略
  • SpringCloud-高级篇(五)
  • 【开发实践】网页预览excel表格原版样式
  • win10安装pytorch(py39)
  • 前端工程、静态代码、Html页面 打包成nginx 的 docker镜像
  • Android 相机库CameraView源码解析 (一) : 预览
  • 正点原子linux应用编程——入门篇2
  • mysql使用--存储程序
  • 【C语言】深入理解数据类型转换与运算