Search
 
SCRIPT & CODE EXAMPLE
 

CSS

photo dropdown html

<!DOCTYPE html>
<html>
  
<head>
    <title>Adding image to dropdown list</title>
    <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>
    <center>
        <h1 style="color: green">
            GeeksforGeeks
        </h1>
          
        <div class="dropdown">
            <button class="dropbtn">
                Country Flags
            </button>
              
            <div class="dropdown-content">
                <a href="#">
                    <img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200630132503/iflag.jpg"
                    width="20" height="15"> India</a>
  
                <a href="#">
                    <img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200630132504/uflag.jpg"
                    width="20" height="15"> USA</a>
                <a href="#">
                    <img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200630132502/eflag.jpg"
                    width="20" height="15"> England</a>
                <a href="#">
                    <img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200630132500/bflag.jpg"
                    width="20" height="15"> Brazil</a>
            </div>
        </div>
    </center>
</body>
  
</html>
Comment

PREVIOUS NEXT
Code Example
Css :: transform css 
Css :: css box sizing 
Css :: how to add grow effect animation button in css 
Css :: test typescript 
Css :: ahk borderless fullscreen 
Css :: javascript index value 
Css :: how to display a header in the center of the column in css 
Css :: css tricks macos spaces in dock 
Css :: css animation not smooth site:stackoverflow.com 
Css :: bootstrap grid only css npm install 
Css :: wp query not in category 
Css :: css großbuchstaben erzwingen 
Css :: reset css simples 
Css :: css text effects 
Css :: css validator 
Css :: css 100vh minus header 
Css :: center input element css 
Css :: css clip-path 
Css :: css cursor 
Css :: css masking 
Css :: online animation maker css 
Css :: what is a css selector 
Css :: opposite of :not css 
Css :: css background templates 
Css :: rel="noopener noreferrer 
Css :: css how to make 2d animations at once 
Css :: <i class="fa-solid fa-quote-left"</i 
Css :: button position translate on bottom edge bootstrap 
Css :: Woocommerce product title + price over image (overlay) 
Css :: capitalize only first letter css 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =