For a solution to your query, consider utilizing javascript. With a simple script and removal of certain lines of css, you can achieve the desired outcome.
https://jsfiddle.net/prsebqg3/
Here is the html snippet provided:
<span id="span3" tabindex="0">Hide Me</span>
<span id="span2" tabindex="0">Show Me</span>
<p id="alert" >Some alarming information here</p>
<script>
document.getElementById("span3").onclick = function() {functionHide()};
function functionHide() {
document.getElementById("span2").style.display = "block";
document.getElementById("span3").style.display = "none";
document.getElementById("alert").style.display = "none";
}
document.getElementById("span2").onclick = function() {functionShow()};
function functionShow() {
document.getElementById("span2").style.display = "none";
document.getElementById("span3").style.display = "block";
document.getElementById("alert").style.display = "block";
}
</scrip>
This snippet includes the respective CSS segment as well:
#span2{
display:none;
}