Tailwind: 通过小示例体验它

示例1

<h1 class="text-3xl font-bold underline">
  你好,axum.rs!
</h1>
类名含义原生CSS
text-3xl将文字大小设置为 3xl font-size: 1.875rem;line-height: 2.25rem;
font-bold将文字设置为粗体font-weight: 700;
underline给文字设置下线线text-decoration-line: underline;
  • text-3xl
    • 不仅设置了 font-size,还设置了 line-height
    • 为毛 3xl它设置的 font-size1.87rem?别急,下一章告诉你。

示例2

点击查看本小结代码

观后感

通过以上两个小示例,你有什么感觉?我觉得:

要查看完整内容,请先登录