Sample overflow:auto

for SO: http://stackoverflow.com/questions/20397858/inline-style-wont-overwrite

by Mayank Dixit

HTML

<div id='testDiv' style='overflow:hidden'>
    Hello Params<br/>
    Hello Params<br/>
    Hello Params<br/>
    Hello Params<br/>
    Hello Params<br/>
    Hello Params<br/>
    Hello Params<br/>
    Hello Params<br/>
    Hello Params<br/>
    Hello Params<br/>
</div>

CSS

#testDiv{
    height:100px;
    background: lightgray;
    overflow:visible!important;
}