如何使用响应式 类 使文本保持较大

How to make text stay large using responsive classes

我希望我的 header 始终保持大尺寸。这是我的代码。

 <h1 className='main-title  sm:text-4xl md:text-5xl lg:text-5xl xl:text-5xl font-bold '>

男士,我将屏幕最小化,文字变小,不会保持大尺寸。

默认情况下,Tailwind 使用移动优先断点系统。

<h1 class='main-title text-4xl md:text-5xl font-bold' />