下拉菜单会扭曲其他按钮

问题描述 投票:0回答:1

将鼠标悬停在“项目”按钮上后,我希望它向下滚动下拉菜单,而不扭曲其他按钮的大小,并同时向下推页脚。任何帮助将不胜感激。

谢谢你。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>title</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div class="container">
        <div class="content">
            <div class="buttons_home">
                <button class="home_button">About</button>
                <button class="home_button">Resume</button>
                
                <div class="dropdown">
                    <button class="home_button">Projects</button>
                    <div class="project_menu">
                        <ul>
                            <li><a href="projects.html">Kalkulacka</a></li>
                            <li><a href="projects.html">Projekt2</a></li>
                            <li><a href="projects.html">Projekt3</a></li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>

        <div class="footer">
            <p>© 2024</p>
        </div>
    </div>
</body>
</html>
:root {
    --light-gray: #979797;
    --dark-gray: #3D3D3D;
    --orange: #ff8400;
    --gray: #808080;
}

.buttons_home {
    display: flex;
    justify-content: center;
    gap: 5%;
    margin-top: 10%;
}

.home_button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 5% 10%;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 150%;
    text-decoration: none;
    display: block;
    width: 27%;
    text-align: center;
}

.content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    background: black;
    flex-grow: 1;
}

/* Project dropdown */
.dropdown .home_button {
    width: 100%;
    padding: 20% 10%;
    box-sizing: border-box;
}

.dropdown {
    position: relative;
    width: 27%;
}

.project_menu {
    display: none;
    background-color: transparent;
    border: 2px solid white;
    box-sizing: border-box;
    margin-top: 2px;    
}

.project_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.project_menu li a {
    color: white;
    padding: 5%;
    display: block;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.project_menu li a:hover {
    color: var(--orange);
}

.dropdown:hover .project_menu {
    display: block;
    position: relative;
    width: 100%;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #000 url(bg.webp) repeat 0 0;
    color: #edf0f1;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: medium;
    border-top: 2px solid var(--orange);
    position: relative;
}

.footer p {
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

有相对位置

我尝试将位置更改为绝对,这不会影响按钮,但不会压低页脚。

.dropdown:hover .project_menu {
    display: block;
    position: absolute;
    width: 100%;
}

具有绝对位置

将鼠标悬停在“项目”按钮上后应该是什么样子:
预期结果

html css button drop-down-menu css-position
1个回答
0
投票

添加

align-items: flex-start
,这会将按钮与容器的开头对齐:

.buttons_home {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Add this */
    gap: 5%;
    margin-top: 10%;
}
最新问题
© www.soinside.com 2019 - 2025. All rights reserved.