1
Okay, I don’t understand what I’m missing.
My idea was when to walk the mouse over a div, show the div who was hiding.
.main_container:hover .hidden_container
{
display: block;
}
.hidden_container
{
display:none;
}
<body>
<div class="main_container">
<p>On hover here</p>
<div class="hidden_container">
<p>Shows this</p>
</div>
</div>
I am trying to create a "delay" to not show the div "Hidden-container" instantly.
What I’m not able to do is create the 1 sec delay. before I show the div. I’ve seen the transition-delay: 1seg;
but I’m not getting what I want.
The perfect thing was to do this in HTML + CSS. But if JS solves the problem, I’ll accept it as a solution.