gpt4 book ai didi

html - 导航栏元素不适合每个屏幕

转载 作者:行者123 更新时间:2023-11-28 01:11:19 27 4
gpt4 key购买 nike

我正在用 Notepad++ 制作一个 HTML 网页,但导航栏元素不会根据屏幕调整它的长度。我真的需要帮助。

这是我的代码:

<head>
<style>
html {
height: 100%;
width: 100%;
}

body {
background-color: #FFE4E1;
font-family: jokerman, 'times new roman', serif;
margin-top: 0px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
}

nav ul {
display: table;
width: 99, 5%;
height: 40px;
border: #F08080 4px solid;
list-style: none;
margin: 0;
padding: 0;
white-space: nowrap;
text-align: center;
}

nav ul li {
text-align: center;
float: left;
order: 1;
display: table-cell;
}

nav ul li a {
display: table-cell;
position: relative;
padding-left: 95.85px;
padding-right: 95.85px;
line-height: 41px;
border-right: #F08080 4px solid;
border-left: #F08080 4px solid;
text-decoration: none;
font-size: 20px;
color: #DAA520;
background-color: #CD5C5C;
}

inline li {
width: calc(100/5)
}
</style>
</head>

<body>
<div style="background-color: peachpuff">
<div id="Logo" style="background-color: darksalmon">
<img src="DragonaxeYT.jpg" alt="Logo" width="200">
<h1>DragonaxeYT.no</h1>
<nav>
<ul>
<li><a href="Dragonaxe-Youtube_1.html">Hjem</a></li>
<li><a href="Dragonaxe-Youtube_2.html">Kalender</a></li>
<li><a href="Dragonaxe-Youtube_3.0.html">Blogg</a></li>
<li><a href="Dragonaxe-Youtube_4.html">Om meg</a></li>
<li><a href="Dragonaxe-Youtube_5.0.html">Quizer</a></li>
</ul>
</nav>
</div>
</div>
</body>

希望有人知道如何解决它?我希望它能够 self 调整,以便该网站在手机上也能正常运行。提前致谢。

最佳答案

使用以下内容更新您的 nav ul linav ul li a(我注释掉了代码并添加了宽度样式):

nav ul li{
text-align: center;
/*float: left;*/
order:1;
display: table-cell;
}
nav ul li a{
display: table-cell;
position: relative;
/*padding-left: 95.85px;*/
/*padding-right: 95.85px;*/
line-height: 41px;
border-right: #F08080 4px solid;
border-left: #F08080 4px solid;
text-decoration: none;
font-size: 20px;
color: #DAA520;
background-color: #CD5C5C;

// New style
width: 20vw;
}

在 Codepen 中查看此操作:https://codepen.io/Tiarhai/pen/WgGPbj

关于html - 导航栏元素不适合每个屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52081553/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com