Matthias Apsel: ID einen Wert runter zählen

Beitrag lesen

Om nah hoo pez nyeetz, Freund!

Wie gesagt, ich habe das ganze bereits gelöst, wäre aber interessiert, ob man das auch ohne Javascript hinbekommen könnte.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
<html>  
<head>  
<meta http-equiv="content-type" content="text/html; charset=utf-8">  
<title>Mitglieder</title>  
<style type="text/css">  
  li {background-color: gold; width: 100px; height: 100px;  margin: 20px; display: inline-block; list-style-type: none; position: relative;}  
  div {background-color: green; width: 200px; height: 200px; position: absolute; left: -9999px; z-index: 2;}  
  #hover li:hover div, :target {top: 0; left: 0; }  
  li + li {z-index: 1;}  
  li + li + li {z-index: 0;}  
</style>  
</head>  
<body>  
<h1>variante hover</h1>  
<ul id="hover">  
  <li>Person 1<div>mehrere Infos zu Person 1</div></li>  
  <li>Person 2<div>mehrere Infos zu Person 2</div></li>  
  <li>Person 3<div>mehrere Infos zu Person 3</div></li>  
</ul>  
<h1>variante klick</h1>  
<ul id="click">  
  <li><a href="#details1">Person 1</a><div id="details1">mehrere Infos zu Person 1<a href="#">gelesen</a></div></li>  
  <li><a href="#details2">Person 2</a><div id="details2">mehrere Infos zu Person 2<a href="#">gelesen</a></div></li>  
  <li><a href="#details3">Person 3</a><div id="details3">mehrere Infos zu Person 3<a href="#">gelesen</a></div></li>  
</ul>  
</body>  
</html>

Matthias

--
1/z ist kein Blatt Papier.