CSSを整形してくれるオンラインツール csscomb.com

http://csscomb.com/online/
CSSを整形してくれるオンラインツール。


before

header {
  margin: 0 auto 12px;
  width: 1024px;
  height: auto;
  background: #F93;
}
.header_text {
  float: left;
  margin:12px 0;
  width: 280px;
  height: 90px;
  background: #999;
}

after

header {
  width: 1024px;
  height: auto;
  margin: 0 auto 12px;
  background: #F93;
}
.header_text {
  width: 280px;
  height: 90px;
  margin:12px 0;
  background: #999;
  float: left;
}

見やすく並び替えてくれます。