有没有办法让顺风默认给链接加下划线?

Is there a way to have the links underlined by default with tailwind?

我刚刚发现顺风 css,我喜欢它。但默认情况下所有链接都没有样式,这意味着它们没有下划线。

如果可能的话,我想将 text-decoration: underline 或简单的顺风 .underline class 默认应用于我的所有链接。我认为为 Web 可访问性添加下划线是一种很好的做法,我想将 .undeline class 添加到我的所有链接并不是很有效。

非常感谢您的帮助:)

您可以在样式中为您的元素添加基本样式Sheet

@layer base {
  a {
     @apply underline;
  }
}

Adding Base Styles