a sublime plugin to compact and expand css code
original code: https://gist.github.com/2863474
download the files, and put them in a folder called CompactExpandCss , and then put the folder in packages folder.
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
}