CSS dropdowns


Indholdsfortegnelse

    Vis indholdsfortegnelse


Opret en svævende dropdown med CSS.


Demo: Dropdown-eksempler

Bevæg musen hen over eksemplerne nedenfor:


Grundlæggende dropdown

Opret en dropdown-boks, der vises, når brugeren bevæger musen hen over en element.

Eksempel

<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>

Prøv det selv →

<!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>


Eksempel forklaret

HTML) Brug et hvilket som helst element til at åbne rullemenuens indhold, f.eks. -en <span> eller et <button>-element.

Brug et containerelement (som <div>) til at oprette dropdown-indholdet og tilføje hvad du vil have inde i det.

Pak et <div>-element rundt om elementerne for at placere dropdown-indholdet korrekt med CSS.

CSS) Klassen .dropdown bruger position:relative, som er nødvendig, når vi vil have dropdown-indhold, der skal placeres lige under dropdown-knappen (ved hjælp af position:absolute).

Klassen .dropdown-content indeholder det faktiske dropdown-indhold. Det er skjult af standard, og vil blive vist ved svævning (se nedenfor). Bemærk, at min-bredden er indstillet til 160px. Skift gerne det her. Tip: Hvis du ønsker, at bredden af rullemenuens indhold skal være så bred som rullemenuen, skal du indstille bredden til 100 % (og overflow:auto til aktivere scroll på små skærme).

I stedet for at bruge en kant, har vi brugt CSS-egenskaben box-shadow til at lave dropdown-menuen ligner et "kort".

:hover-vælgeren bruges til at vise rullemenuen, når brugeren flytter musen over rullemenuen.



Drop down menu

Opret en rullemenu, der giver brugeren mulighed for at vælge en indstilling fra en liste:

Dette eksempel ligner det forrige, bortset fra at vi tilføjer links inde i dropdown-boksen og style dem, så de passer til en stylet dropdown-knap:

Eksempel

<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>

Prøv det selv →

<!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>



Højrejusteret dropdown-indhold

Hvis du vil have rullemenuen til at gå fra højre mod venstre, i stedet for venstre mod højre, skal du tilføje højre: 0;

Eksempel

.dropdown-content {
  right: 0;
}

Prøv det selv →

<!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>



Flere eksempler

Dropdown billede

Sådan tilføjer du et billede og andet indhold i rullemenuen.

Hold markøren over billedet:


Prøv det selv →

<!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 Navbar

Sådan tilføjer du en rullemenu i en navigationslinje.


Prøv det selv →

<!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>