Which CSS editor can give formatting like this in one shot automatically?

Posted by jitendra on Stack Overflow See other posts from Stack Overflow or by jitendra
Published on 2010-04-02T04:29:02Z Indexed on 2010/04/02 4:33 UTC
Read the original article Hit count: 299

Filed under:
|

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?

© Stack Overflow or respective owner

Related posts about css

Related posts about css-selectors