Which CSS editor can give nested formatting like this in one shot automatically?
- by jitendra
Which free (offline) CSS tool can give formatting like this in one shot automatically? using any keyboard shortcut of from any command of IDE
example
This (it can be any type of formatting)
#proceed_form ol, #demo_form ol { list-style:none; margin:0; padding:0}
#proceed_form ol li, #demo_form ol li { padding:2px 0; margin:0; line-height:normal; height:18px}
#proceed_form ol li label, #demo_form ol li label { display:inline-block; width:195px;}
into like this
#proceed_form ol,
#demo_form ol {
list-style: none;
margin: 0;
padding: 0 }
#proceed_form ol li,
#demo_form ol li {
padding: 2px 0;
margin: 0;
line-height: normal;
height: 18px }
#proceed_form ol li label,
#demo_form ol li label {
display: inline-block;
width: 195px; }
Can we achieve this type of formatting in Dreamweaver? or it not possible in dreamweaver then in any other tool?