2

我正在努力将以下代码片段转换为使用 Tailwind css,但到目前为止还没有成功。

原始代码:

<li>
   <Link to="/test">abc</Link>
</li>

CSS:

ol li:not(:last-child)::after {
  color: red;
  margin: 0 10px;
  content: '/';
}

有没有办法摆脱css文件并将所有这些规则放在顺风中?具有该内容的部分/似乎是不可能的。

4

1 回答 1

1

你可以使用类after:content-['/']

<li>
  <a 
    class="after:content-['/'] after:inline"
    href="/test">abc
  </a>
</li>

https://play.tai​​lwindcss.com/ztw0UhpFpg

来源:https ://dev.to/j471n/how-to-use-before-and-after-in-tailwind-css-1he

于 2021-11-18T15:28:23.470 回答