HTML Code:
<link rel="stylesheet" type="text/css" href="s.css"/>
<div id="xd"><ul>a</ul><</div>
CSS Code:
#xd ul {
visibility: hidden;
transition: all 1s;
}
When viewing this code on Chrome version 27, the "a" element briefly appears for 1 second before disappearing. How is this possible when using 'visibility: hidden;' CSS property?
I am curious to learn more about why this unexpected behavior is occurring.
Thank you in advance for your explanation.