Apply CSS Style on all elements except with a SPECIFIC ID
        Posted  
        
            by 
                Rajesh Paul
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Rajesh Paul
        
        
        
        Published on 2013-10-19T09:48:50Z
        Indexed on 
            2013/10/19
            9:54 UTC
        
        
        Read the original article
        Hit count: 337
        
CSS Code(what I need)
<style>
    div[id!='div1']// I actually needed an inequality operator for NOT EQUAL TO
    {
        font-size:40px;
    }
</style>
HTML code
<body>
    <div>abc</div>
    <div>def</div>
    <div id='div1'>ghi</div>
</body>
The CSS didn't work as I intended.
I actually wanted to define the style for all <div>-elements except the one with id='div1'.
How can I do that?
© Stack Overflow or respective owner