Hi all, as part of my design process I often use a live css editor to create the site im working on at the time, however when I view the css its all shoved/compressed onto one line...so editing it becomes a pain. So for example; I type in this into actinic
html {
min-height: 100%;
}
* {
margin: 0;
padding: 0;
}
upload the site
and the css is like this
html { min-height: 100%; } * { margin: 0; padding: 0; } ....blah blah
If it was just a few lines, it wouldn't be an issue, but its normally a hundred!
html {
min-height: 100%;
}
* {
margin: 0;
padding: 0;
}
upload the site
and the css is like this
html { min-height: 100%; } * { margin: 0; padding: 0; } ....blah blah
If it was just a few lines, it wouldn't be an issue, but its normally a hundred!
Comment