Beispiel:Fixierte Tooltips.html
Aus SELFHTML-Wiki
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0;" />
<link rel="stylesheet" type="text/css" media="screen" href="./Beispiel:SELFHTML-Beispiel-Grundlayout.css" />
<title>fixer Tooltip</title>
<style>
main {
position: relative;
}
ul {
width: 15em;
list-style-type: none;
margin: 0;
padding: 0;
}
ul li {
padding: .2em 1em;
background-color: #F1F3F4;
border: 0.1em solid #3983ab;
border-style: none solid solid;
overflow: hidden;
}
ul li:first-child {
border-style: solid;
}
ul li a {
float: right;
}
.details {
position: absolute;
right: 1em;
top: 1em;
background-color: #F1F3F4;
border: 0.1em solid #3983ab;
border-radius: 0 8px 8px;
padding: 1em 1em .2em;
width: 22em;
max-height: 20em;
overflow: auto;
display: block;
opacity: 0;
z-index: -10;
}
.details h3 {
margin-top: 0;
}
.details:target {
opacity: 1;
z-index: 10;
}
.close {
width:0;
heigh:0;
border: 0;
text-shadow: none;
color: transparent;
}
.close:after {
position: absolute;
top: 1em;
right: 1em;
content:"X";
color: white;
background: #c32e04;
font: bold 1em/150% Georgia, Times, serif;
border: 0.1em solid #3983ab;
border-radius: 0 8px 8px;
display: block;
text-align:center;
width: 1.5em;
height:1.5em; padding:0.2em 0 0 0em;
}
</style>
</head>
<body>
<h1>Beispiel:Fixierte Tooltips</h1>
<main>
<h2>Umfangreiche Tooltipps</h2>
<ul>
<li>1. Eintrag <a href="#d1">Details</a></li>
<li>2. Eintrag mit etwas mehr Text <a href="#d2">Details</a></li>
<li>3. Eintrag <a href="#d3">Details</a></li>
<li>Der letzte Eintrag hat noch mehr Text, aber der Details-Link bleibt trotzdem unten rechts.<a href="#d4">Details</a></li>
</ul>
<div id="d1" class="details">
<h3>Details zum 1. Eintrag</h3>
<p>Hier stehen so viele Details, dass man um das Scrollen nicht drum rum kommt.</p>
<p>Hier<br>ist<br>viel<br>Text<br></p>
<p>Hier<br>ist<br>viel<br>Text<br></p>
<p>Hier<br>ist<br>viel<br>Text<br></p>
<p>Hier<br>ist<br>viel<br>Text<br></p>
<a class="close" id="c1" href="#c1" title="schließen">schließen</a>
</div>
<div id="d2" class="details">
<h3>Details zum 2. Eintrag</h3>
<p>Das passt in das Element hinein, ohne dass gescrollt werden muss.</p>
<a class="close" id="c2" href="#c2" title="schließen">schließen</a>
</div>
<div id="d3" class="details">
<h3>Details zum 3. Eintrag</h3>
<p>Auch ein Bild wäre kein Problem. <img src="https://src.selfhtml.org/forum/fachlich-hilfreich-32.png" alt="fachlich hilfreich"></p>
<a class="close" id="c3" href="#c3" title="schließen">schließen</a>
</div>
<div id="d4" class="details">
<h3>Details zum 4. Eintrag</h3>
<p>Das HTML innerhalb dieses Elements kann beliebig komplex werden.</p>
<a class="close" id="c4" href="#c4" title="schließen">schließen</a>
</div>
</main>
</body>
</html>