I am debugging a web portal out of a Java project. In the resulting jsp page, a div is always not shown, the reason is because there is a "display:none" being set for it:
 <div class="settings_nav" style="display: none;">
  </div>
In the debug mode of the Chrome browser, there is a "Styles" section describes this as:
 element.style {
 display: none;
 }
Interestingly, this style information is not associated with any CSS stylesheets in Chrome debug mode, I searched through the CSS stylesheet set, there is still not hit.
Could experts give me some hint on where is the best place to find this style definition? Thanks.