In this site I found and modified a CSS/HTML example. All seems go well but <a>
link inside the div not working: its show without problems but when I click on them the only thing that happen is to hide the div and no more.
Here is the code:
.clicker {
outline: none;
text-align: center;
font-size: 1em;
font-style: italic;
color: blue;
text-decoration: underline;
cursor: pointer;
margin-top: -2em;
margin-bottom: 3em;
}
.hiddendiv {
display: none;
}
.clicker:focus + .hiddendiv {
display: block;
}
body#l-autore div.main div.hiddendiv ul.opere {
font-size: 0.75em;
list-style-type: none;
font-style: italic;
text-align: center;
}
body#l-autore div.main div.hiddendiv ul.opere li {
display: inline;
}
<body id="l-autore" xml:lang="it-IT">
<div class="header">
<h1>Brevi profili biografici degli autori</h1>
</div>
<div class="main">
<h1 id="sigil_toc_id_1">EXAMPLE</h1>
<div class="clicker" tabindex="1">
<h2 id="sigil_toc_id_2">
<p class="autori" id="id_romano">Romano</p>
</h2>
</div>
<div class="hiddendiv">
<ul class="opere">
<li>
<a href="Cap02sez1.html">
<span class="nr">I</span>
</a>
</li>
<li>
<a href="Cap02sez2.html">
<span class="nr">II</span>
</a>
</li>
</ul>
</div>
</div>
</body>
Of course the two files Cap02sez1.html
and Cap02sez1.html
exist: before to put the link inside the DIV a normal link open the right file.
When you load the page, you're setting
display: none
on the div containing the links. Upon clicking on Romano, you're making them temporarily visible with.clicker:focus + .hiddendiv
. However, that only applies when.clicker
is in 'focus'. As soon as you click on one of the links,.clicker
loses focus.Unfortunately, I don't think this is possible to solve with raw CSS, as there is neither a
previous selector
norparent selector
in CSS. Therefor it is likely impossible to target the display of.hiddendiv
from the child a link with raw CSS.I would look into using JavaScript (preferably jQuery) to solve this with only a few small changes:
HTML:
<p class="autori" onclick="show()"/>
CSS:
.visible { display: block; }
(Also remove the
.clicker:focus + .hiddendiv
selector)JavaScript / jQuery:
function show() { $(".hiddendiv").toggleClass("visible"); }
Whenever you click on 'Romano',
.hiddendiv
will toggle between visible and invisible. I believe this is what you're after. If you just want to show it, and never hide it, you can use$(".hiddendiv").addClass("visible");
instead.Hopefully you're able to use JavaScript; otherwise I don't think this can be solved sorry!
Updated Answer Without JavaScript
It's actually possible to solve your problem with raw CSS! You can simulate a button click in raw CSS, with some changes to the structure of your HTML. The only way to do this is by utilising a hacky version of
checkbox
. First, we put your.clicker
inside the label for a checkbox:Notice that the
clicker
div is now a label for the new input#show
. Now we modify the CSS to reflect this, with a new target, while hiding the real checkbox:We can then toggle the visibilty based on the
:checked
status of the invisible checkbox:Naturally, you'll also need to remove both of the following:
Working sample here (with tidied code).
And thus, you have a visibility toggle for a separate div, with raw HTML and CSS :)
Updated Answer With No JavaScript And Multiple Hidden Content Divs
It's quite possible to get this to work the same way with multiple different sections that are hidden. To do this, you simply create a range of hidden checkboxes that each start with the same name. Instead of using just
#show
, you would use#show_1, #show2, #show_3, etc
. You can then target them with the CSS regular expression[id^=show]
.HTML:
CSS:
Here's a new fiddle showing it working with multiple toggles controlling individual hidden divs :)