gpt4 book ai didi

html - 基于监视器宽度的元素大小

转载 作者:行者123 更新时间:2023-11-28 13:08:40 25 4
gpt4 key购买 nike

我正在创建自己的个人网站,以测试我目前在 HTML 和 JavaScript 中学到的知识。我制作了工具栏,它在我的显示器上看起来不错,它的宽度相当大。我将工具栏内容放在中间。我尝试在较小的显示器上访问它,工具栏中的元素相互重叠,因为我根据百分比设置内容。我知道用像素测量会出现同样的问题。我该如何创建一个网站,如果显示器宽度大于 x 像素,那么它会将工具栏的内容居中,但如果显示器宽度小于 x 像素,它不会将工具栏的内容居中?

正如您在 this 中看到的那样jsFiddle,元素重叠,但如果将 View Pane 拖动得更宽,您会看到它居中。

index.html:

<body>
<div id="header">
<div id="toolbar">
<div id="links">
<ol>
<li id="home"><a href="justinpchang.zxq.net/index.html">Home</a></li>
<li id="blog"><a href="justinpchang.zxq.net/blog/index.html">Blog</a></li>
<li id="forum"><a href="justinpchang.zxq.net/forum/index.html">Forums</a></li>
<li id="chatbox"><a href="justinpchang.zxq.net/chatbox/index.html">Chatbox</a></li>
<li id="code"><a href="justinpchang.zxq.net/code/index.html">Code</a></li>
<li id="calendar"><a href="justinpchang.zxq.net/calendar/index.html">Calendar</a></li>
</ol>
</div>
<div id="login">
Username: <input type="text" name="firstname"></input>
Password: <input type="text" name="lastname"></input>
<a href="justinpchang.zxq.net/user/loginlanding.html"><button id="submit" class="button">Submit</button></a>
</div>
</div>
</div>

CSS:

body{
background-color:#EBF2F0;
margin-top:50px;
}
#links{
padding:0px;
margin:0px;
top:-10px;
position:absolute;
vertical-align: center;
}
a:link{
text-decoration:none;
color:#FFFF00;
}
a:visited{
text-decoration:none;
color:#FFFF00;
}
a:hover{
text-decoration:none;
color:#000BF2;
}
a:active{
text-decoration:none;
color:#FFFF00;
}
li{
display:inline;
padding:0px;
font-family:Courier;
}
ol{
list-style-type: none;
}
#header{
width:100%;
padding:5px 10px;
margin:0px;
height:25px;
top:0px;
left:0px;
position:fixed;
background-color:#000000;
}
#toolbar{
width:70%;
margin-left:15%;
margin-right:15%;
}
#home,#blog,#forum,#chatbox,#code,#calendar{
padding:10px;
color:#000BF2;
}
#home:hover,#blog:hover,#forum:hover,#chatbox:hover,#code:hover,#calendar:hover{
background-color:#2E2E2D;
color:#000BF2;
}
#login{
color:#FFFFFF;
margin-right:30px;
text-align:right;
}
#submit{
margin-top:-7px;
margin-left:10px;
padding:6px;
}

最佳答案

如果您需要一个纯 CSS 解决方案,您可以使用 min-width:

#toolbar{
width:70%;
margin-left:15%;
margin-right:15%;
min-width:1200px;
}

Fiddle

关于html - 基于监视器宽度的元素大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19529587/

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