gpt4 book ai didi

html - 缩小屏幕尺寸时侧边栏无法正确显示

转载 作者:行者123 更新时间:2023-11-27 23:48:31 25 4
gpt4 key购买 nike

当屏幕为移动设备调整大小时,边栏无法正确显示,我遇到了一些问题。
按下汉堡图标,菜单显示在侧边栏的外面,拖动图标。我还想知道是否可以移动顶部的栏并在移动 View 中以某种方式使其变小。
我认为这可能与导航栏的位置有关,但如果更改标题移动的位置,我想将所有内容保留在一页上而无需滚动。
对于给您带来的不便,我深表歉意,因为我是新手。
谢谢。

Codepen

HTML

<nav class="navbar navbar-expand-lg navbar-dark bg-black flex-column">
<a class="navbar-brand" href="#">
<img src="img/el.png" alt="logo"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse flex-column" id="navbarNav">
<a class="nav-link active" href="#">Home</a>
<a class="nav-link" href="#">About Me</a>
<a class="nav-link" href="#">Portfolio</a>
<a class="nav-link" href="#">Contacts</a>
</div>
<div class="icons">
<ul style="list-style: none;">
<li><i class="fab fa-linkedin fa-2x"></i></li>
<li><i class="fab fa-twitter fa-2x"></i></li>
<li><i class="fab fa-github fa-2x"></i></li>
</ul>
</div>
</nav>



<header>
<div class="container">
<div class="row">
<div class="col">
<h1>Hello,<br>I'm Silvia</h1>
<button class="btn btn-outline-warning btn-lg" type="submit">Contact Me</button>
</div>
</div>
</div>
</header>

CSS

.navbar{
position: fixed;
background-color: black;
height: 100vh;
width: 150px;
top: 0;
left: 0;
z-index: 1; /* Stay On Top */
font-size: 1.2rem;}

.navbar-brand img {
position: center fixed;
margin-left: 10px;
width: 90px;
height: 70px;}

.navbar a {
color: white;}

.fab{
color: #fec614;
margin: 10px -40px;}

body {
background: url(../img/background.jpg) center fixed;
background-size: cover;
font-family: 'Ubuntu', sans-serif;}

header {
color: white;
margin-top: 250px;
margin-left: 150px; /* Same as width of sidebar */}

h1{
font-size: 4.5rem;}

.btn {
margin-top: 40px;}

最佳答案

我已经更改了媒体查询中的 display 属性,请查看下面的代码笔。

Codepen

关于html - 缩小屏幕尺寸时侧边栏无法正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56658840/

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