para ello necesitas javascript ese es tu foro :)
Código:
<script>
// definiciones basicas
OCULTO="none";
VISIBLE="block";
function mostrar(blo) {
document.getElementById(blo).style.display=VISIBLE;
document.getElementById('ver_off').style.display=VISIBLE;
document.getElementById('ver_on').style.display=OCULTO;
}
function ocultar(blo) {
document.getElementById(blo).style.display=OCULTO;
document.getElementById('ver_off').style.display=OCULTO;
document.getElementById('ver_on').style.display=VISIBLE;
}
</script>
con ese script ocultamos y mostramos las capas al hacer onclick ahora hay que ir a las capas
Código:
<div id="ver_on"><a href="#" onclick="mostrar('bloque')">Mostrar</div>
<div id="ver_off" style="display: none">
<a href="#" onclick="ocultar('bloque')">Ocultar
</div>
<div id="bloque" style="display: none">
Aqui ira el texto oculto
</div>
saludos man :)