gpt4 book ai didi

css - div 缺少填充

转载 作者:太空宇宙 更新时间:2023-11-04 14:47:38 25 4
gpt4 key购买 nike

我已经创建了一个适合移动设备的网站,但是当页面以低分辨率(例如在移动设备上)显示时我遇到了一个小问题。

http://designated.net.au/testbed/djdais/

如您所见,它在全屏下看起来不错,但在低分辨率下看起来像这样:

enter image description here

菜单底部缺少 5px 的填充,即使我已经在 CSS 中定义了它。

这是我的代码:

/* =Menu
-------------------------------------------------------------- */

#access {
background: #333; /* Show a solid color for older browsers */
clear: both;
display: block;
float: left;
margin: 0 auto 6px;
min-width: 300px;
max-width: 880px;
min-height: 50px;
border: solid;
border-width: 10px;
border-color: #666;
padding: 0;
text-transform: uppercase;
}
#access ul {
font-size: 14px;
line-height: 30px;
list-style: none;
margin: 0;
padding: 5px;
}
#access li {
float: left;
position: relative;
margin: 5px 5px 5px 5px;
width: 135px;
height: 30px;
text-align: center;
background: #666;
}

最佳答案

在你的#access ul 上放一个 float

试试这个:

#access ul {
font-size: 14px;
line-height: 30px;
list-style: none;
margin: 0;
padding: 5px;
float: left;
}

关于css - div 缺少填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17716538/

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