Automatic formatting for CSS
Submitted by Saturday, 26 February, 2011 - 20:02
on
We work on CSS with a group of people. Some like CSS in this format:
.style{width:100px;height:300px;float:left}
.style2{width:500px;height:10px;float:right}
Others like this:
.style {
width:100px;
height:300px;
float:left;
}
.style2 {
width:500px;
height:10px;
float:right;
}
(this format should preferable even have indenting, which I can not type in this forum)
Is there a way to toggle this switch in jEdit, so that each programmer just hits a key and switches the formatting?
Thanks!
.style{width:100px;height:300px;float:left}
.style2{width:500px;height:10px;float:right}
Others like this:
.style {
width:100px;
height:300px;
float:left;
}
.style2 {
width:500px;
height:10px;
float:right;
}
(this format should preferable even have indenting, which I can not type in this forum)
Is there a way to toggle this switch in jEdit, so that each programmer just hits a key and switches the formatting?
Thanks!