My HTML code looks like this:
<div id="loadinganimationsearch">
<div style="color: #28ABE3;font-size: 14px;float: left;">Fetching Textbooks</div>
<div id="block_1" class="barlittle"></div>
<div id="block_2" class="barlittle"></div>
<div id="block_3" class="barlittle"></div>
<div id="block_4" class="barlittle"></div>
<div id="block_5" class="barlittle"></div>
<br>
</div>
This is how the HTML renders:
When I use the CSS below, the loadinganimationsearch
container disappears in Chrome and Firefox.
#loadinganimationsearch {
display: none;
}
However, when I view it in Safari 5.1.7, the CSS seems to be ignored. Why is this happening and what can I do to resolve it?