【发布时间】:2021-03-28 09:36:49
【问题描述】:
我创建了一个导航栏。 当我在移动设备上打开它时,我希望它在网站内容上方以透明背景打开,而不是将网站内容向下推,这怎么可能使用 html、css 和 js(没有引导程序)?
【问题讨论】:
标签: html css navigation responsive
我创建了一个导航栏。 当我在移动设备上打开它时,我希望它在网站内容上方以透明背景打开,而不是将网站内容向下推,这怎么可能使用 html、css 和 js(没有引导程序)?
【问题讨论】:
标签: html css navigation responsive
body{
padding: 0;
margin: 0;
}
#navbar {
position: fixed;
width: 100%;
z-index: 1;
background-color: black;
}
@media screen and (max-width: 375px) {
#navbar{
background-color: transparent;
}
}
<nav id="navbar">
<div style="display: flex; justify-content: space-between;">
<h3 style="color: orange;">My site</h3>
<h5 style="color: white;">Some link</h5>
</div>
</nav>
<h1>Hello world!</h1>
【讨论】: