HTML和CSS-调整浏览器窗口大小时导航栏的大小

时间:2019-04-07 17:21:42

标签: html css resize navbar

应该是一个常见且并非罕见的问题,但我仍然尝试了所有操作,但没有任何效果。因此,也许这次有人可以提供帮助,这个问题将由每个人检查自己的错误。

所以我要创建汽车服务网站,我在HTML和CSS方面都是一个初学者。

这是我的浏览器的正常全屏模式,看起来不错:

This is the normal full screen mode of my browser and it looks fine

调整浏览器大小后,导航栏就会发生

enter image description here

HTML代码:

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
            <title>Home</title>
        <link href="style.css" rel="stylesheet" type="text/css">
    </head>
        <body>
            <header>
                <div class="container">
                        <img src="img/header.png" alt="logo" class="logo">
                    <nav>
                        <ul>
                            <li><a href="index.html">Home</a></li>
                            <li><a href="about.html">About</a></li>
                            <li><a href="services.html">Services</a>
                            <li><a href="registration.html">Registration</a>
                            <li><a href="contact.html">Contact</a></li>
                            <li><a href="profile.html">Profile</a></li>
                        </ul>
                    </nav>
                </div>
            </header>
        </body>

CSS代码:

body{
margin: 0;
padding: 0;
background-color: black;
font-family: 'Work Sans', sans-serif;
font-weight: 300;
}

.container{
width: 80%;
margin: 0 auto;
}

header{
background-color: #25DE8B;
}
header::after{
content: '';
display: table;
clear: both;
}

.logo{
float: left;
padding: 10px 0;
}

nav{
float: right;
}

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

nav li{
display: inline-block;
margin-left: 70px;
padding-top: 35px;
position: relative;
}

nav a{
color: #012b4f;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}

nav a:hover{
color: #28AA1A;
}

nav a::before{
content: '';
display: block;
height: 8px;
width: 0%;
background-color: #012b4f;
position: absolute;
top: 0;
transition: all ease-in-out 250ms;
}

nav a:hover::before{
width: 100%;
}

我需要更改代码,以便无论如何我的导航栏都保持原位。感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

您使用px作为单位。您应该使用%或其他与页面大小相关的值。 您可以在此链接中查看更多信息: https://www.w3schools.com/cssref/css_units.asp