最近用TailwindCSS做了个项目,真的太爽了...写样式的时候完全不用想class名,直接上utility classes,效率起飞
<div class="flex items-center justify-between p-4 bg-white rounded-lg shadow-md">
<h3 class="text-lg font-semibold text-gray-800">Title</h3>
<button class="px-4 py-2 text-sm font-medium text-white bg-blue-600 rounded-md hover:bg-blue-700">Action</button>
</div> 以前写CSS要各种命名困扰,现在直接写就是了,脑子不用转弯了
登录/注册