gpt4 book ai didi

html - css a nav 隐藏了我的文本

转载 作者:太空宇宙 更新时间:2023-11-03 20:43:39 25 4
gpt4 key购买 nike

您好,我的段落有些困难。它应该包含在标题和导航(底部)之间所以我想知道如何从导航中取消隐藏我的文本。 fiddle

*{
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
color: black;
}
.header{
position:absolute;
top: 0;
left: 0;
right: 0;
height: 60px;
line-height: 60px;
color: #fff;
text-transform: uppercase;
text-align: center;
background-color: #11a7ab;
}

.nav{
position: absolute;
bottom: 0;
left: 0;
right: 0;
line-height: 60px;
text-align: center;
background-color: #4f597b;
overflow:hidden;
zoom: 1;
}
.nav a{
display: block;
height: 60px;
line-height: 60px;
width: 50%;
float: left;
@include transition-duration;
}
.nav a:first-child{
border-right: 1px solid #000;
}
.nav a.active{
border-top: 3px solid #11a7ab;
}
.nav a i{
margin-top: 15px;
}
.panel{
position: 0;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow-x:hidden;
overflow-y:scroll;
-webkit-overflow-scrolling:touch;
}

.left{

}
.right{

}
.left{
@include transform(translate3D(-50%, 0, 0));
}

最佳答案

因为您使用 position:absolute 作为标题,该部分将被它重叠。所以你可以尝试使用一些 margin-top ,它等于标题的高度,如下所示:

.view {
position: relative;
margin-top:60px;
}

Demo.

关于html - css a nav 隐藏了我的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23587405/

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