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
- Host: GitHub
- URL: https://github.com/toobug/compactexpandcss
- Owner: TooBug
- Created: 2013-01-10T05:12:43.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2015-09-25T13:23:40.000Z (over 10 years ago)
- Last Synced: 2025-07-15T13:55:36.930Z (11 months ago)
- Language: Python
- Size: 166 KB
- Stars: 36
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
}