Reputation:
I want to open the CSS files in Atom editor but it is formatted in a difficult way thread. any ideas to open CSS files in a nice CSS format.CSS Files to open and read
Upvotes: 2
Views: 3088
Reputation: 2012
I found https://codebeautify.org/css-beautify-minify extremely useful. It is easy to use. No need to install anything. Just save result to your css.
Upvotes: 0
Reputation: 2960
To convert any minified(unreadable) file into readable form is called beautify. The extension, plugin, software or tool which convert minified file into readable file is called Beautifier / Formatter.
There are several methods to use it.
Code Editor Extensions/Plugins
Bundlers and Task Runner Tools
Online Tools
You can also use it with Developer tools in your favorite browser.
Upvotes: 2