this will first target all direct children of the div tag with the > and then match the one which is the 3rd childplayground link: https://play.tailwindcss.com/1tRLpoO1zCAdditional Update: also be aware that if you want to use the last-child psuedo class, the name is actually :last...
Runtime Modules:@nuxtjs/tailwindcss@6.12.0,@nuxtjs/device@3.1.1,@nuxt/image@1.4.0,@pinia/nuxt@0.5.1,@pinia-plugin-persistedstate/nuxt@1.2.0,dayjs-nuxt@2.1.9,vue3-carousel-nuxt@1.1.1,@nuxtjs/apollo@5.0.0-alpha.14,nuxt-tour@0.0.9,@nuxtjs/i18n@8.3.1 Build Modules:- Reproduction Ca...
:last-child 选择器选取属于其父元素的最后一个子元素。 提示:请使用:first-child选择器来选取属于其父元素的第一个子元素。 语法 $(":last-child") 尝试一下 - 实例 选取所有 元素的最后一个 元素 如何选取所有 元素的最后一个 元素。 :last 和 :last-child...
HTML DOM lastChild 属性 元素对象 实例 返回文档的最后一个子节点: document.getElementById('myList').lastChild; 尝试一下 » 定义和用法 lastChild 属性可返回文档的最后一个子节点。 浏览器支持 所有主要浏览器都支持 lastChild 属性 语法 node.lastChi
:nth-last-of-type(n) 选择器选取属于其父元素的特定类型的第n个子元素的所有元素,从最后一个子元素开始计数。 提示:请使用:nth-last-child()选择器来选取属于其父元素的不限类型的第n个子元素的所有元素,从最后一个子元素开始计数。 语法 :nth-last-of-type(n|even|odd|formula) ...