CSS-Dropdowns


Inhaltsverzeichnis

    Inhaltsverzeichnis anzeigen


Erstellen Sie mit CSS ein schwebendes Dropdown-Menü.


Demo: Dropdown-Beispiele

Bewegen Sie die Maus über die folgenden Beispiele:


Einfaches Dropdown

Erstellen Sie ein Dropdown-Feld, das angezeigt wird, wenn der Benutzer mit der Maus über ein Objekt fährt Element.

Beispiel

<style>
.dropdown {
  position: relative;
  
display: inline-block;
}
.dropdown-content {
  display: 
none;
  position: absolute;
  
background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 
12px 16px;
  z-index: 1;
}
.dropdown:hover 
.dropdown-content {
  display: block;
}
</style>

<div class="dropdown">
  <span>Mouse over me</span>
  
<div class="dropdown-content">
    <p>Hello World!</p>
  </div>
</div>

Probieren Sie es selbst aus →

<!DOCTYPE html>
<html>
<head>
<style>
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}
</style>
</head>
<body>

<h2>Hoverable Dropdown</h2>
<p>Move the mouse over the text below to open the dropdown content.</p>

<div class="dropdown">
  <span>Mouse over me</span>
  <div class="dropdown-content">
  <p>Hello World!</p>
  </div>
</div>

</body>
</html>


Beispiel erklärt

HTML) Verwenden Sie ein beliebiges Element, um den Dropdown-Inhalt zu öffnen, z. B. A <span> oder ein <button>-Element.

Verwenden Sie ein Containerelement (wie <div>), um den Dropdown-Inhalt zu erstellen und hinzuzufügen was auch immer du darin haben willst.

Wickeln Sie ein <div>-Element um die Elemente, um den Dropdown-Inhalt zu positionieren richtig mit CSS.

CSS) Die Klasse .dropdown verwendet position:relative, was benötigt wird, wenn wir wollen das Dropdown-Inhalt, der direkt unter der Dropdown-Schaltfläche platziert werden soll (mit position:absolute).

Die Klasse .dropdown-content enthält den eigentlichen Dropdown-Inhalt. Es ist versteckt von Standardmäßig und wird beim Hover angezeigt (siehe unten). Beachten Sie, dass die Mindestbreite auf 160 Pixel eingestellt ist. Fühlen Sie sich frei, sich zu ändern Das. Tipp: Wenn Sie die Breite des Dropdown-Inhalts ändern möchten So breit wie die Dropdown-Schaltfläche ist, setzen Sie die Breite auf 100 % (und overflow:auto auf Scrollen auf kleinen Bildschirmen aktivieren).

Anstatt einen Rahmen zu verwenden, haben wir die CSS-Eigenschaft box-shadow verwendet, um das zu erstellen Das Dropdown-Menü sieht aus wie eine „Karte“.

Der :hover-Selektor wird verwendet, um das Dropdown-Menü anzuzeigen, wenn der Benutzer das verschiebt Bewegen Sie die Maus über die Dropdown-Schaltfläche.



Dropdown-Menü

Erstellen Sie ein Dropdown-Menü, das es dem Benutzer ermöglicht, eine Option aus einer Liste auszuwählen:

Dieses Beispiel ähnelt dem vorherigen, außer dass wir Links in das Dropdown-Feld einfügen und sie so formatieren, dass sie zu einer gestalteten Dropdown-Schaltfläche passen:

Beispiel

<style>
/* Style The Dropdown Button */
.dropbtn {
  
background-color: #4CAF50;
  color: white;
  
padding: 16px;
  font-size: 16px;
  
border: none;
  cursor: pointer;
}
/* The 
container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
  display: 
inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: 
absolute;
  background-color: #f9f9f9;
  
min-width: 160px;
  box-shadow: 
0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
    
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}
/* Show the 
dropdown menu on hover */
.dropdown:hover .dropdown-content {
  
display: block;
}
/* Change the background color of the dropdown 
button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}
</style>

<div class="dropdown">
  <button class="dropbtn">Dropdown</button>
  
<div class="dropdown-content">
    <a href="#">Link 
1</a>
    
<a href="#">Link 2</a>
    <a href="#">Link 3</a>
  </div>
</div>

Probieren Sie es selbst aus →

<!DOCTYPE html>
<html>
<head>
<style>
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}
</style>
</head>
<body>

<h2>Dropdown Menu</h2>
<p>Move the mouse over the button to open the dropdown menu.</p>

<div class="dropdown">
  <button class="dropbtn">Dropdown</button>
  <div class="dropdown-content">
  <a href="#">Link 1</a>
  <a href="#">Link 2</a>
  <a href="#">Link 3</a>
  </div>
</div>

<p><strong>Note:</strong> We use href="#" for test links. In a real web site this would be URLs.</p>

</body>
</html>



Rechtsbündiger Dropdown-Inhalt

Wenn Sie möchten, dass das Dropdown-Menü von rechts nach links statt von links nach rechts verläuft, fügen Sie right: 0; hinzu

Beispiel

.dropdown-content {
  right: 0;
}

Probieren Sie es selbst aus →

<!DOCTYPE html>
<html>
<head>
<style>
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}
</style>
</head>
<body>

<h2>Aligned Dropdown Content</h2>
<p>Determine whether the dropdown content should go from left to right or right to left with the left and right properties.</p>

<div class="dropdown" style="float:left;">
  <button class="dropbtn">Left</button>
  <div class="dropdown-content" style="left:0;">
  <a href="#">Link 1</a>
  <a href="#">Link 2</a>
  <a href="#">Link 3</a>
  </div>
</div>

<div class="dropdown" style="float:right;">
  <button class="dropbtn">Right</button>
  <div class="dropdown-content">
  <a href="#">Link 1</a>
  <a href="#">Link 2</a>
  <a href="#">Link 3</a>
  </div>
</div>

</body>
</html>



Mehr Beispiele

Dropdown-Bild

So fügen Sie ein Bild und andere Inhalte in das Dropdown-Feld ein.

Bewegen Sie den Mauszeiger über das Bild:


Probieren Sie es selbst aus →

<!DOCTYPE html>
<html>
<head>
<style>
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.desc {
  padding: 15px;
  text-align: center;
}
</style>
</head>
<body>

<h2>Dropdown Image</h2>
<p>Move the mouse over the image below to open the dropdown content.</p>

<div class="dropdown">
  <img src="img_5terre.jpg" alt="Cinque Terre" width="100" height="50">
  <div class="dropdown-content">
  <img src="img_5terre.jpg" alt="Cinque Terre" width="300" height="200">
  <div class="desc">Beautiful Cinque Terre</div>
  </div>
</div>

</body>
</html>


Dropdown-Navigationsleiste

So fügen Sie ein Dropdown-Menü in eine Navigationsleiste ein.


Probieren Sie es selbst aus →

<!DOCTYPE html>
<html>
<head>
<style>
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: left;
}

li a, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
  display: block;
}
</style>
</head>
<body>

<ul>
  <li><a href="#home">Home</a></li>
  <li><a href="#news">News</a></li>
  <li class="dropdown">
    <a href="javascript:void(0)" class="dropbtn">Dropdown</a>
    <div class="dropdown-content">
      <a href="#">Link 1</a>
      <a href="#">Link 2</a>
      <a href="#">Link 3</a>
    </div>
  </li>
</ul>

<h3>Dropdown Menu inside a Navigation Bar</h3>
<p>Hover over the "Dropdown" link to see the dropdown menu.</p>

</body>
</html>