gpt4 book ai didi

html - Bootstrap : Navigation points should stack in mobile view and padding inside navigation points should not overlap

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

我正在使用 Bootstrap 构建响应式设计。现在我想创建一个简单的响应式页脚导航。其实事实证明并没有那么简单。我目前面临一个问题,并希望实现一项改进。

问题

一旦导航点开始堆叠,导航点的填充就会重叠,但它们不应重叠。我已经在网络上做了一些研究并尝试了不同的方法,但到目前为止没有一个对我有用。

改进

导航点应在移动 View 中堆叠,但应与更大的视口(viewport)尺寸保持一致。我的感觉是,实现此功能请求也将解决上述问题。但我不确定如何正确设置 Bootstrap 。

也许更有经验的开发人员可以建议如何归档该目标。

我还创建了一个可用的 jsfiddle 示例

<!DOCTYPE html> <!-- Bootstrap uses HTML5 elements and CSS3 properties -->
<meta charset="utf-8">
<!-- Enable IE compatibility mode. -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Scales the viewport width and height to the max. browser window -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Document</title>
<body>
<div class="container">
<div class="row">
<div class="col-sm-12">
<ul id="footer--navigation">
<li><a href="#">Test-Category</a></li>
<li><a href="#">Test-Category</a></li>
<li><a href="#">Test-Category</a></li>
<li><a href="#">Test-Category</a></li>
<li><a href="#">Test-Category</a></li>
</ul>
</div>
</div>
</div>
</body>

https://jsfiddle.net/herbert_hinterberger/y6kcgkbe/1/

非常感谢。赫伯特

最佳答案

如果我对你的问题的理解正确,那么你只需要添加 display: inline-block 到你的页脚链接:

#footer--navigation li > a {
display: inline-block;
padding: 15px;
text-decoration: none;
text-transform: uppercase;
}

否则,将不会应用链接的顶部和底部填充

关于html - Bootstrap : Navigation points should stack in mobile view and padding inside navigation points should not overlap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31240574/

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