i have this situation in my code:

    <style type="text/css">
    #show_div{
    	display: none;
    }
    </style>
    <!-- This is loacl CSS file (work only in this page)-->
    <style type="text/css">
    #show_div{
    	/* How disabled display: none;*/	
    }
    </style>
    <body>
    <div id = "show_div">
    	Text text
    </div>

I always need to hide the table, but one page, sometimes show. In blobal css file is:

    #show_div{
        display: none;
    }

how disabled display: none;?
I can not use jQuery, `$('#show_div').show();` (or JavaScrip).

Thanks

If you do not understand my problem, then I apologize. I can try to explain again.