Which CSS editor can give nested 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
            5:03 UTC
        
        
        Read the original article
        Hit count: 366
        
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