codecamp

Tailwind CSS 文本转换

文本转换

用于控制文本转换的功能类。

Class
Properties
uppercase text-transform: uppercase;
lowercase text-transform: lowercase;
capitalize text-transform: capitalize;
normal-case text-transform: none;

Normal Case

使用 ​normal-case​ 功能类来保留原来的外壳,这通常用于在不同的断点处重置大写。


<p class="normal-case ...">The quick brown fox ...</p>

Uppercase

使用 ​uppercase ​功能类对文本进行大写转换。


<p class="uppercase ...">The quick brown fox ...</p>

Lowercase

使用 ​lowercase ​功能类对文本进行小写转换。


<p class="lowercase ...">The quick brown fox ...</p>

Capitalize

使用 ​capitalize ​功能类对文本进行首字母大写转换。


<p class="capitalize ...">The quick brown fox ...</p>

响应式

要在特定的断点处控制元素的文本转换,可在任何现有的文本转换功能类中添加 ​{screen}:​ 前缀。例如,使用 ​md:uppercase​ 来应用 ​uppercase ​功能类在中等大小的屏幕和更大的屏幕上。

<p class="capitalize md:uppercase ...">
  The quick brown fox jumps over the lazy dog.
</p>

关于 Tailwind 的响应式设计功能的更多信息,请查看响应式设计文档。

自定义

变体

默认情况下, 针对 text transformation 功能类,只生成 responsive 变体。

您可以通过修改您的 ​tailwind.config.js​ 文件中的 ​variants ​部分中的 ​textTransform ​属性来控制为 text transformation 功能生成哪些变体。

例如,这个配置也将生成 hover and focus 变体:

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
       textTransform: ['hover', 'focus'],
      }
    }
  }

设计

如果您不打算在您的项目中使用 text transformation 功能,您可以通过在配置文件的 ​corePlugins ​部分将 ​textTransform ​属性设置为 ​false ​来完全禁用它们:

  // tailwind.config.js
  module.exports = {
    corePlugins: {
      // ...
     textTransform: false,
    }
  }


Tailwind CSS 文本装饰
Tailwind CSS 文本溢出
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Tailwind CSS 基础样式

Tailwind CSS 可访问性

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }