By default, the <script>
tag is meant to have display: none
using the User Agent Stylesheet:
I strongly believe if you inspect the element, you will find that in the Computed Styles as I shown above, it will be inheriting display
styles somehow. That's the reason.
Find something like:
.divClass * {display: block;}
Coz, no one targets <script>
tag! :P