Y
Hacker News
new
|
ask
|
show
|
jobs
by
friendlypeg
1476 days ago
Is there a VSCode plugin that help you do something like this: when I type text-20px it will try to find the closest class e.g. text-sm automatically?
3 comments
clementmas
1476 days ago
Tailwind CSS IntelliSense will give you a list of all the possible classes with the associated pixel value.
You can also do text-[20px] if you really need that specific size.
link
criswell
1475 days ago
Intellisense would help a lot with this task:
https://gist.github.com/crswll/db0d276bbf0884b003f3715d48e68...
link
atonse
1476 days ago
No but when you select an intellisense suggestion, before hitting enter, it’ll show you the underlying css. That can sort of give you the same effect even if in reverse.
link
You can also do text-[20px] if you really need that specific size.