javascript - Div show auto generated inline style -
i have taken 'div' element , @ run time 'div' shows auto generated inline style. how should stop such inline style?
<div class="radius_div_square" id="usernoteexpand" style="overflow-x: auto; overflow-y: auto; height:4px;" sizcache="3" sizset="339;">
in code sample can see height:4px;
have stop.
that inline styling must added other library or framework.
you must find out causing that.
or can overwrite height attribute (external) stylesheet
#usernoteexpand { height: 100px !important; }
however, latter quite dirty...
Comments
Post a Comment