Sascha Schulz
2024-02-19 ae66b713f087d2298fe4db7ae67e68453a30dfc0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Menu</title>
        <style>
            html {
                color: white;
            }
 
            .menu-item {
                display: inline-block;
 
                position: relative;
            }
 
            .menu-item .children {
                display: none;
 
                position: absolute;
            }
 
            .menu-item:hover .children {
                display: block;
            }
        </style>
    </head>
    <body>
        <div class="menu">
            <div class="menu-item">Eins</div>
            <div class="menu-item">
                Hover Me!
                <div class="children">
                    <div>Item 1</div>
                    <div>Item 2</div>
                </div>
            </div>
            <div class="menu-item">Drei</div>
        </div>
    </body>
</html>