An open API service indexing awesome lists of open source software.

https://github.com/toobug/compactexpandcss

a sublime plugin to compact and expand css code
https://github.com/toobug/compactexpandcss

Last synced: 11 months ago
JSON representation

a sublime plugin to compact and expand css code

Awesome Lists containing this project

README

          

CompactExpandCss
================

a sublime plugin to compact and expand css code

original code:

install
================

download the files, and put them in a folder called `CompactExpandCss` , and then put the folder in packages folder.

usage
================

select the css code

*{
padding:0
}

and press `ctrl + alt(command) + [` , the code becomes

*{ padding:0}

select the css code and press `ctrl + alt(command) + ]` , the code becomes

*{
padding:0
}