我最近开始在Nuxt项目中尝试tailwind.css。因此我需要使用:not(:last-child)
伪元素,但我没有找到方法。
<ul>
<li
v-for="(item, index) in items"
:key="`item-${index}`"
class="border-solid border-b border-black"
>
Item
</li>
</ul>
我想为除最后一个以外的所有<li>
添加一个底部边框。
答案在您共享的last
in the docs的链接中。