Om nah hoo pez nyeetz, Gunnar Bittersmann!
Das geht nicht oder?
Frage beantwortet?
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
[code lang=css] body {position: relative;}
div { background: red; width: 10em; height: 10em; padding: 3em;}
p { background: gold;}
#schalter:hover + div { position: absolute; width: 0; height: 0; padding: 0; font-size: 0;}
#schalter:hover + div > p {position: absolute; font-size: 16px;}
</style>
</head>
<body>
<p id="schalter">Hover mich zum Unsichtbar machen</p>
<div>
Schachtel
<p>Ring</p>
</div>
</body>
</html>
[/code]
Matthias