TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Tailwind UI

974 pointsby alt3redabout 5 years ago

61 comments

luketheobscureabout 5 years ago
Tailwind is fantastic. Everyone goes through the initial shock of complaining about the &quot;ugly markup&quot;, the violation of separation of concerns, etc. But I&#x27;ve worked in enough large codebases to tell you that the ones that use Tailwind have a more consistent UI, with much less handwritten CSS. Bootstrap sites inevitably devolve into a soup of custom CSS and Bootstrap framework. You end up with lots of verbose class declarations like &quot;btn btn-link btn-primary btn-xs danger&quot;, but you still need lots of little `margin-left: 3px` rules to push and pull things into place. Most other CSS libraries suffer the same fate.<p>On the other side of things, sites without a framework generally opt for a convention like &quot;BEM&quot; (block-element-modifier). BEM seems to be the worst of both worlds, both abandoning the &quot;cascading&quot; part of &quot;Cascading Style Sheets&quot; and still requiring verbose class names!<p>I&#x27;ve been working on a Tailwind project for the last six months with a team of around 8 people. We did a bunch of initial work getting the Tailwind config just right and some base styling in place, but since then we&#x27;ve barely written a line of CSS. Yes, the templates are verbose, but they are also incredibly readable and easy to reason about what classes are doing what. On-ramping new people has been easy as well, since they don&#x27;t have to learn some custom system, instead they can just read the docs on the Tailwind site.
评论 #22430878 未加载
评论 #22431587 未加载
评论 #22432256 未加载
评论 #22431868 未加载
评论 #22432376 未加载
评论 #22433501 未加载
mike1o1about 5 years ago
Tailwind has been great and I&#x27;ve been looking forward to this for months. I fought Tailwind as a concept pretty hard at first, but after hearing Adam and a few others raving about it I gave it a shot. It takes some getting used to at first but I can&#x27;t imagine developing without it anymore.<p>To me, the biggest benefit of Tailwind and utility classes in general is that it removes the cognitive overheard of having to think of class names while designing a new page.<p>For example, if I&#x27;m working on a card and I want some text below the main text to have a smaller, gray font size. What do I name that class? &quot;card-sub-text&quot;, &quot;card-sub-title&quot;? No - don&#x27;t even worry about it - &quot;text-sm text-gray-700&quot; and move on.<p>Later on, if I end up repeating that combination in a number of places, I have more context of what that class name really should be, and I can extract the utility classes to a specific class name.<p>Really powerful stuff that has helped to increase my velocity quite a bit.
评论 #22427464 未加载
评论 #22424756 未加载
评论 #22435119 未加载
juretriglavabout 5 years ago
I&#x27;ve been following this closely. Given the preview with some components listed it seems exceptionally well made: <a href="https:&#x2F;&#x2F;tailwindui.com&#x2F;components" rel="nofollow">https:&#x2F;&#x2F;tailwindui.com&#x2F;components</a><p>There are also live demos of the app and marketing pages:<p>1. <a href="https:&#x2F;&#x2F;tailwindui.com&#x2F;page-examples&#x2F;landing-page-01" rel="nofollow">https:&#x2F;&#x2F;tailwindui.com&#x2F;page-examples&#x2F;landing-page-01</a><p>2. <a href="https:&#x2F;&#x2F;tailwindui.com&#x2F;page-examples&#x2F;detail-view-01#" rel="nofollow">https:&#x2F;&#x2F;tailwindui.com&#x2F;page-examples&#x2F;detail-view-01#</a><p>Plus a screencast on how to use it to build these pages: <a href="https:&#x2F;&#x2F;vimeo.com&#x2F;393580241&#x2F;82c6d7c5f6" rel="nofollow">https:&#x2F;&#x2F;vimeo.com&#x2F;393580241&#x2F;82c6d7c5f6</a>
评论 #22423190 未加载
评论 #22424427 未加载
评论 #22423434 未加载
评论 #22423181 未加载
评论 #22424067 未加载
joaodlfabout 5 years ago
When I first learned about Tailwind I though &quot;wow this is amazing!&quot;, but it quickly became obvious I was more or less learning another &quot;language&quot;, which I really didn&#x27;t need when re-entering the crazy world of frontend.<p>I might reconsider it again once I am more comfortable with what frontend has become, but that is still quite a bit away.
评论 #22423826 未加载
评论 #22424871 未加载
评论 #22425937 未加载
评论 #22429326 未加载
评论 #22423525 未加载
atonseabout 5 years ago
It&#x27;s really nice, but is there something this pretty for bootstrap?<p>I literally manage something like 10 different products&#x2F;websites. And the only way to stay sane and have some pace with features is to use bootstrap for all of them (we currently use bootstrap for maybe 5 of them, and the rest were inherited sites that we&#x27;re migrating).<p>I love the look of this but don&#x27;t have the time or the will to migrate all our sites to learn yet another CSS meta-language with its own sets of concepts and classes.
评论 #22423465 未加载
评论 #22423503 未加载
评论 #22424537 未加载
评论 #22425898 未加载
newfeatureokabout 5 years ago
The problem with this IMO is that some enterprising person will just use regular tailwind (or another utility-css framework like tachyons) and re-implement all of these components and give it out for free, circumventing the license and killing the value of this.<p>Normally with themes it would be time prohibitive to do so, but the nature of utility-css is that it&#x27;s relatively straightforward to implement each component, even without looking at the CSS that&#x27;s obviously easy to inspect.<p>I think what they should do is build a tool that let&#x27;s you build your entire site using these components and charge for <i>that</i>. Otherwise, I guarantee within a year of today, 2&#x2F;26&#x2F;20 there will be a free version of this on GitHub created by the community.<p>---<p>On a side note, if some bored person out there wants to make a huge splash in the CSS community, figuring out a way to target a specific DOM element, create the equivalent of an AST and specify a &quot;dictionary&quot;, which would be a utility-css framework (tailwind, tachyons, basecss, etc) and finally reimplement the targeted DOM element in the chosen framework would be amazing.<p>Assuming you buy into utility-css, that would remove all existing friction in adopting it. Then that would mean you could grab an existing theme [1] and convert it to tailwind components as desired.<p>1 - <a href="https:&#x2F;&#x2F;themes.getbootstrap.com&#x2F;preview&#x2F;?theme_id=4231" rel="nofollow">https:&#x2F;&#x2F;themes.getbootstrap.com&#x2F;preview&#x2F;?theme_id=4231</a>
评论 #22425668 未加载
评论 #22424475 未加载
评论 #22424255 未加载
评论 #22427370 未加载
评论 #22425469 未加载
评论 #22426106 未加载
评论 #22424445 未加载
评论 #22427602 未加载
评论 #22425728 未加载
评论 #22424289 未加载
评论 #22424893 未加载
pcurveabout 5 years ago
On the surface, the markup is pretty damn awful. But if you reach certain level of proficiency, this will definitely speed up development.<p>&lt;div class=&quot;lg:flex lg:items-center lg:justify-between&quot;&gt; &lt;div class=&quot;flex-1 min-w-0&quot;&gt; &lt;h2 class=&quot;text-2xl font-bold leading-7 text-gray-900 sm:text-3xl sm:leading-9 sm:truncate&quot;&gt; Back End Developer &lt;&#x2F;h2&gt; &lt;div class=&quot;mt-1 flex flex-col sm:mt-0 sm:flex-row sm:flex-wrap&quot;&gt; &lt;div class=&quot;mt-2 flex items-center text-sm leading-5 text-gray-500 sm:mr-6&quot;&gt;<p>Personally I would prefer Bootstrap over this approach.
评论 #22424543 未加载
评论 #22423726 未加载
评论 #22425771 未加载
评论 #22425039 未加载
评论 #22424090 未加载
评论 #22426130 未加载
评论 #22424813 未加载
评论 #22424293 未加载
评论 #22424911 未加载
评论 #22424925 未加载
评论 #22424101 未加载
ahallockabout 5 years ago
I&#x27;m really surprised at the negativity in these comments. I&#x27;m drooling over how good this looks and can&#x27;t wait to use it in my projects. $249 is nothing for the craftsmanship you&#x27;re getting (and future components!). I&#x27;ve been following this project for a while and have seen some of the live-coding sessions--a ton of work went into picking the correct styles and fine-tuning each component.
kareemmabout 5 years ago
Looks sexy. But can someone ELI5 why I&#x27;d use Tailwind over e.g. a Bootstrap theme? Not trying to be snarky - genuinely trying to understand the advantages.
评论 #22423500 未加载
评论 #22423693 未加载
habosaabout 5 years ago
For anyone who hasn&#x27;t tried tailwind I really suggest that you give it a shot. It&#x27;s made me 2-5x more productive when styling something from scratch.
评论 #22426859 未加载
评论 #22425850 未加载
fraktlabout 5 years ago
It&#x27;s great there&#x27;s yet another UI framework on its way. Choice is awesome.<p>I&#x27;m a frontend guy (among other things) and for past 2 years I&#x27;ve been using Nuxt (app server, node.js) and Vuetify (material UI framework for Vue.js). Given what kind of results that stack can (and does) achieve, I wonder if people in the same boat as me (using the same stack) would even attempt to use Tailwind CSS&#x2F;UI.<p>Whatever the case is, I&#x27;m glad there&#x27;s a project that&#x27;s useful and that helps authors finance their effort. Thumbs up!
efdeeabout 5 years ago
Judging from all the positive comments in this thread, clearly I must be missing something. This looks horrible to me. Instead of meaningful CSS classes you just get a bunch of small classes that do very small things, which you&#x27;re supposed to combine until it looks like what you want. How is that better than writing your CSS manually?<p>(Again, I realise the failure is probably on me. But I don&#x27;t get it.)
评论 #22423710 未加载
评论 #22423816 未加载
评论 #22423754 未加载
评论 #22423713 未加载
评论 #22423691 未加载
评论 #22424455 未加载
评论 #22424580 未加载
评论 #22424236 未加载
评论 #22423676 未加载
ronyfadelabout 5 years ago
Stealing these components would be a very shitty thing to do, but I&#x27;m wondering as to how the authors can protect their CSS library from piracy? (esp. considering the 249$ asking price). Legal action?<p>I&#x27;m considering open sourcing a software product I&#x27;m working on, but it could mean that I&#x27;ll be bending over backwards to monetize it, as people can just run straight from source.
评论 #22427849 未加载
评论 #22432673 未加载
arcosdevabout 5 years ago
I don&#x27;t see the point of Tailwind. Why not just write inline styles and get straight to making an manageable mess right from the start? No need for a framework to help you with that. Most developers will abuse Tailwind and created nonsensical class names like `font-size-20px` or `margin-left-15px` instead of kicking the naming can down the road (as others have pointed out).
ecmascriptabout 5 years ago
Looks sexy but damn that&#x27;s expensive. $250 for some pre-built styles I probably need to edit a lot anyway.<p>I rather use a free option like <a href="https:&#x2F;&#x2F;semantic-ui.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;semantic-ui.com&#x2F;</a> than pay that much. Maybe if you are company but it doesn&#x27;t really work if you are a solo dev or using it for a side project.
评论 #22424288 未加载
评论 #22429362 未加载
thrownaway954about 5 years ago
in my opinion tailwind really only works when used with a component based framework like Vue, React or ActionView::Component. the issue to me is that you have to add sooooooooo many classes to make a button look good that you get fatigued very quickly. when using a component based, you can build a button component and just reuse that.<p>this isn&#x27;t an issue with something like bootstrap where a single class makes a button look pretty.
评论 #22426362 未加载
k__about 5 years ago
I read that Tailwind CSS is awesome, but not to be confused with how Bootstrap works, because Tailwind CSS is more low-level.<p>Does this mean, Tailwind UI is Tailwinds &quot;answer&quot; to that problem? Like, it&#x27;s are direct Bootstrap competitor?
评论 #22424380 未加载
bensocharabout 5 years ago
Its like George Costanza says about sex &amp; parking.<p>Why should I pay for a Tailwind hero when, if I apply myself, I can get a Bootstrap hero for free?<p><a href="https:&#x2F;&#x2F;tailwindui.com&#x2F;components&#x2F;marketing&#x2F;sections&#x2F;heroes" rel="nofollow">https:&#x2F;&#x2F;tailwindui.com&#x2F;components&#x2F;marketing&#x2F;sections&#x2F;heroes</a> <a href="https:&#x2F;&#x2F;getbootstrap.com&#x2F;docs&#x2F;4.4&#x2F;components&#x2F;jumbotron&#x2F;" rel="nofollow">https:&#x2F;&#x2F;getbootstrap.com&#x2F;docs&#x2F;4.4&#x2F;components&#x2F;jumbotron&#x2F;</a>
评论 #22426155 未加载
keb_about 5 years ago
For everyone is who skeptical about utility-first &quot;atomic&quot; or &quot;functional&quot; CSS, and don&#x27;t want to go through the hassle of getting Tailwind with necessary build steps set up, I&#x27;d recommend giving a smaller-scoped library such as Basscss a try. It&#x27;s &gt;3kb, you can include it using a CDN link, and it covers most of what you need to be productive.<p><a href="https:&#x2F;&#x2F;basscss.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;basscss.com&#x2F;</a>
评论 #22427547 未加载
agumonkeyabout 5 years ago
to the team:<p><a href="https:&#x2F;&#x2F;tailwindui.com&#x2F;components&#x2F;application-ui&#x2F;forms&#x2F;input-groups" rel="nofollow">https:&#x2F;&#x2F;tailwindui.com&#x2F;components&#x2F;application-ui&#x2F;forms&#x2F;input...</a><p>the currency sign not matching the selected symbol is confusing
SnowingXIVabout 5 years ago
Recently used Tailwind for a quick and dirty MVP. It came out looking very polished (way more so than the cookie-cutter bootstrap look) and cut down the development time quite a bit allowing more time to focus on the important stuff on the backend. Worth giving it a try on a side project if you haven&#x27;t.<p>Like you, I was put off by how crowded the HTML looked but got used to it and found it way quicker to update and kept the css file clean.
williamdcltabout 5 years ago
I really like Tailwind&#x27;s approach in some cases, it does make prototyping extremely fast.<p>What I&#x27;m really missing (and I don&#x27;t understand it doesn&#x27;t exist) is a way to compose classes into a single class, to refactor collections of small utility classes into a meaningful class with semantic sense. Why can&#x27;t I do something like:<p><pre><code> .my-class { use .text-sm use .text-gray use .bold } </code></pre> Kind of like calling several functions from a single function to compose their effects.<p>The only things that come to mind are SCSS mixins (but would have to declare the `text-gray` mixin AND the `text-gray` class, plus it doesn&#x27;t with a lib like tailwind that provides classes), or CSS-in-JS trickery. Styled-component allows this sort of things, but it still doesn&#x27;t feel very nice to use.<p>If I&#x27;ve missed something and this is actually possible, please somebody tell me!
评论 #22428743 未加载
评论 #22431761 未加载
评论 #22428750 未加载
davidbanhamabout 5 years ago
I&#x27;m very excited by this!<p>I currently use <a href="https:&#x2F;&#x2F;materializecss.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;materializecss.com&#x2F;</a> over several products. It&#x27;s been great, but I&#x27;m stuck on the 0.100.x line because the upgrade path was too difficult. It&#x27;s also hasn&#x27;t been updated since the first 1.0 release some time ago. Not complaining since I got what I paid for (it was free) but it&#x27;s left me pretty anxious to find a replacement.<p>Salesforce&#x27;s Lightning components are good but challenging to understand how to work with outside the walled garden. Zurb&#x27;s Foundation UI is interesting but seems to want me to use whole page templates rather than components.<p>This looks like exactly what I&#x27;ve been dreaming of. I&#x27;ve put my money where my mouth is as I can&#x27;t wait to have more components built out to a stage where I can start using it for real.
psootsabout 5 years ago
This is not a good idea.<p>1. Components are sort of antithetical to the Tailwind CSS ethos of atomic styling. Of course, examples of markup and class arrangements are certainly helpful, but at the end of the day you are still always going to have a unique markup in the end. And according to their license, those customized components are now under their Tailwind UI license.<p>2. What counts as a component? What if Tailwind UI produces a licensed component that is a single div with a single border class? Could it be that someone with no prior knowledge or access to this component have accidentally already created the same markup elsewhere? Would that be an infringement?<p>Frankly, I really enjoy using Tailwind CSS, but I&#x27;m a little nervous now to even use the original project in my work.
arendtioabout 5 years ago
Sometimes I wonder why Open UI5 [1] is so little known within the front-end community. I mean, in a world where long term support for frameworks is rare, having a component library backed by a large company like SAP should be quite valuable.<p>[1] <a href="https:&#x2F;&#x2F;openui5.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;openui5.org&#x2F;</a><p>[2] Sample App: <a href="https:&#x2F;&#x2F;github.com&#x2F;SAP-samples&#x2F;openui5-sample-app" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;SAP-samples&#x2F;openui5-sample-app</a><p>[3] Slider in the component library: <a href="https:&#x2F;&#x2F;openui5.hana.ondemand.com&#x2F;entity&#x2F;sap.m.Slider&#x2F;sample&#x2F;sap.m.sample.Slider" rel="nofollow">https:&#x2F;&#x2F;openui5.hana.ondemand.com&#x2F;entity&#x2F;sap.m.Slider&#x2F;sample...</a>
评论 #22425996 未加载
评论 #22425990 未加载
bensocharabout 5 years ago
To me this is solving Tailwind&#x27;s biggest issue: consistency &amp; context.<p>Comparing it to Bootstrap or Foundation adding the class `alert alert-danger` to a div tells my coworkers that it&#x27;s an &quot;alert&quot; &amp; it will look like an alert everywhere. If I want to change how alerts look, I change the CSS<p>With Tailwind you&#x27;d have `bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative`. Then I&#x27;d have to change my HTML everywhere to update the appearance of alerts &amp; its not always obvious that I&#x27;m looking at an &quot;alert&quot; in code. I&#x27;d end up with different looking alerts, cards, buttons, etc all over my app
评论 #22426169 未加载
ivanhoeabout 5 years ago
So Tailwind is basically a Bootstrap without the hard-coded default styles, and then you add the UI theme like this. Do you then just end up with a different looking Bootstrap, or it still has some other benefits?
mirapabout 5 years ago
UX designer here! Tailwind is great piece of work and I&#x27;d recommend it for validating MVPs and building new projects in general.<p>Reasons:<p>- Its constrains and whitespaces are well made, if kept untouched, the result may be good, even if build by dev with no design skills.<p>- Elements are containing what&#x27;s necessary, but no more. No unnecessary tooltips etc.<p>- All elements have clear basic states (see <a href="https:&#x2F;&#x2F;tailwindui.com&#x2F;components&#x2F;application-ui&#x2F;forms&#x2F;input-groups" rel="nofollow">https:&#x2F;&#x2F;tailwindui.com&#x2F;components&#x2F;application-ui&#x2F;forms&#x2F;input...</a>)
32gbsdabout 5 years ago
I like the clean look but still all the web homology unite! <a href="https:&#x2F;&#x2F;vimeo.com&#x2F;393580241&#x2F;82c6d7c5f6" rel="nofollow">https:&#x2F;&#x2F;vimeo.com&#x2F;393580241&#x2F;82c6d7c5f6</a>
dylanhassingerabout 5 years ago
I&#x27;ve been using Tailwind for a year, I love it. I do think the example markup is often way more verbose then it needs to be.<p>My biggest request would be, making the naming conventions match more closely to CSS property names and Bootstrap 4 names. Once a developer learned the system, if they knew CSS property names they could automatically guess the Tailwind class without looking at the docs. Matching Boostrap 4 whenever its convention, would make it that much easier to convert BS4 sites to Tailwind (and easier to adopt for BS devs). My 2 cents.<p>Excited for UI. Keep it comin!
desireco42about 5 years ago
First, I want this. TailwindCSS has great developer experience for me. I would pay for this even if I wouldn&#x27;t use it, but I definitely will.<p>I like how they didn&#x27;t limit too much what can you do with components in license, which is really good.<p>I generally am OK with this and want to see if I want to get just appUI or both sets. I think Adam should&#x27;ve joined them together and maybe given us some deal on pricing as early adopters. But, he is great guy, and this is excellent way to support him and project.
sandGorgonabout 5 years ago
so the problem is that this is priced too high. Its not about free, but the real pricing market now is themeforest.<p>For example - <a href="http:&#x2F;&#x2F;landrick.react.themesbrand.com&#x2F;" rel="nofollow">http:&#x2F;&#x2F;landrick.react.themesbrand.com&#x2F;</a> is 17$.<p><a href="https:&#x2F;&#x2F;g-axon.com&#x2F;wieldy-ant-design-react-redux-admin-template&#x2F;" rel="nofollow">https:&#x2F;&#x2F;g-axon.com&#x2F;wieldy-ant-design-react-redux-admin-templ...</a> is 24$ (which uses ant design)
评论 #22424114 未加载
评论 #22428194 未加载
评论 #22427625 未加载
hackerman555about 5 years ago
I like the design, hate the implementation.<p>Really doesn&#x27;t work with react.<p>react + styled components is god mode. This is a step down (aside from the design).<p>At the end of the day, CSS isn&#x27;t that hard anymore.<p>Design it in figma. Put it into zeplin. Copy paste the styles into a styled-component. You&#x27;re done.<p>tailwind is only a step up if you&#x27;re a russian php developer who has been using bootstrap for the last 10 years.
nickjjabout 5 years ago
I know this would be hard to pull off but I kind of wish we could see the small &#x2F; medium &#x2F; large views of each component as a preview.<p>Right now it&#x27;s not possible to tell what would happen when any of these components were resized since it&#x27;s just a static image as a preview but responsiveness is one of the most important things to see.
评论 #22423814 未加载
misiti3780about 5 years ago
These UIs look great! Does anyone have any great resources, examples, where one could learn CSS&#x2F;SCSS to create stuff like this. I know CSS&#x2F;SCSS enough to edit existing codebases and tweek, but I would not be able to create these from scratch. I would love to improve my design skills.
评论 #22426957 未加载
dharma1about 5 years ago
Without commenting on Tailwind CSS itself, I think the value add here is with the very nice looking UI components designed by Steve Schoger.<p>I would like to see a React component version of this, ready to use with a CMS like <a href="https:&#x2F;&#x2F;webiny.com" rel="nofollow">https:&#x2F;&#x2F;webiny.com</a>
tjholowaychukabout 5 years ago
Great job, this looks awesome! I wish something polished like this was around when I started my stuff. I&#x27;m not sure how I feel about Tailwind being almost 1mb of CSS :D, but it&#x27;s probably worth all the time you save, especially for apps the size isn&#x27;t such a big deal.
评论 #22426401 未加载
评论 #22424383 未加载
评论 #22424366 未加载
agluszakabout 5 years ago
Shouldn&#x27;t there be a possibility for one class to extend other or to somehow include or merge classes, such that btn = rounded + shadow + p-4? This would allow you to use utility classes as building blocks for semantic ones.<p>(Disclaimer: I&#x27;m a backend dev and I don&#x27;t know CSS well)
评论 #22424175 未加载
评论 #22423802 未加载
评论 #22424247 未加载
评论 #22424332 未加载
XCSmeabout 5 years ago
I am still not convinced to make the switch to Tailwind from MaterialUI. Looking at the source code of the examples, it looks like a huge block of code with a lot of duplicate text&#x2F;class names.<p>The HTML-CSS &quot;separation&quot; question will never have a &quot;right&quot; answer...
irrationalactorabout 5 years ago
I love Tailwind but hate having to deal with build tools and purgecss and package management and [insert modern workflow hassle] just for a little side project.<p>Is there anything similar to Tailwind that doesn&#x27;t require any build process?
评论 #22426624 未加载
KaoruAoiShihoabout 5 years ago
This does look very pretty. I want to use it. But is this just another template? What&#x27;s to stop any site built on this from looking identical to other sites bootstrap style? What are the customization options on here?
评论 #22423635 未加载
neyaabout 5 years ago
I can totally see the value of Tailwind UI, and as an experienced user of UIKIT (<a href="https:&#x2F;&#x2F;www.getuikit.com" rel="nofollow">https:&#x2F;&#x2F;www.getuikit.com</a>), I don&#x27;t see much difference, to be honest. Can someone please help me understand what is so good about Tailwind UI that UIKIT doesn&#x27;t already?<p>UIKIT is super light weight and modular. I&#x27;ve developed extremely high converting landing pages with almost no JS at all using only components I needed. Can the same be done with Tailwind? And if yes, then what exactly is the appeal? Simply the difference in number of components?<p>I love the look and feel of Tailwind, but it just looks like another UI framework to me and I don&#x27;t understand all the raving reviews here. If it&#x27;s something obvious I&#x27;m missing, very happy to learn it and pick it up.<p>Thank you.
uyuioiabout 5 years ago
Getting tailwind to work properly with Vue CLI has been the bane of my existence.
评论 #22428725 未加载
rsp1984about 5 years ago
Please excuse the newbie questions but would I be able to use this in a WYSIWYG framework like Webflow or Weebly or Wordpress?<p>How about compatibility with React?<p>Or is this the land of &quot;bare metal&quot; HTML+JS+CSS?
评论 #22429591 未加载
markdownabout 5 years ago
Why is the license on another website... and a website built for collaboratively editing a document no less?<p>Best to set it in stone (by bringing it onto your own website) before you start selling.
meeritaabout 5 years ago
I don&#x27;t like the way they designed the inputs. Pure placeholder hint, no label. Will create a big accesibility and usability problem.
评论 #22428829 未加载
aaghaabout 5 years ago
Wow. I just watched the video Adam put together of slamming a new front-end together and it&#x27;s really impressive (and fast).
hirako2000about 5 years ago
I used tailwind, not for long, until I found basscss.<p>It comes down to a css library being a utility that defines clean patterns for extension.
darepublicabout 5 years ago
I haven&#x27;t tried this before but it reminds me of tachyons from what I&#x27;m reading in the comments
nojvekabout 5 years ago
Do these come as custom element ? Just wanna abstract away and deal with higher level UI elems.
z3t4about 5 years ago
Just give me an image or sketch plus color palette and I will vectorize everything in hand written HTML and SVG, use semantic element (avoid using div and span), make it &quot;responsive&quot; for different screen sizes... and I would pay good money for it. If you are a designer, dont sell the code.
longtermdabout 5 years ago
I didn&#x27;t get the pricing. Is this one-time, monthly, or annual?
评论 #22424572 未加载
cc9oneabout 5 years ago
Just bought Tailwind. Where do I find my Tailwind plugin list?
winridabout 5 years ago
It looks really nice. Site is fast too. Good job.
oefrhaabout 5 years ago
This looks nice, but one question I have regarding licensing is that for the simpler and more &quot;obvious&quot; components, where&#x27;s line between learning from their demo (when the code isn&#x27;t locked behind a paywall) and having to purchase a license? Take &quot;Wide Tables&quot;[1] for example; I have built almost the exact same thing myself with Tailwind by learning from an (IIRC official) example before.<p>[1] <a href="https:&#x2F;&#x2F;tailwindui.com&#x2F;components&#x2F;application-ui&#x2F;tables&#x2F;wide" rel="nofollow">https:&#x2F;&#x2F;tailwindui.com&#x2F;components&#x2F;application-ui&#x2F;tables&#x2F;wide</a>
jacobsenscottabout 5 years ago
Remember when the OS provided the UI, and you could just focus on solving your users problems without thinking much about the UI. Those were the days.
udeathstarckabout 5 years ago
Remove all the things
kundiisabout 5 years ago
how is this different than bootstrap?
udeathstarckabout 5 years ago
Remove
jstewartmobileabout 5 years ago
How many hundreds of megabytes for basic UI elements? I say this not an attack on Tailwind, but as an attack on web &quot;standards.&quot;
benbristowabout 5 years ago
Looks nice but sod paying $250 for some HTML &amp; CSS.
评论 #22423516 未加载
评论 #22425763 未加载