以下是我的css。我不知道为什么当我在桌面视图上打开我的网站时,我的#wrapDesktopNavBar 没有显示。请帮我看看谢谢:)
@media screen and (min-width: 800px) {
/* Navigation bar (blank) settings */
#wrapDesktopNavBar {
visibility: visible;
width: 100%; /*Sets the width*/
height: 70px; /*Sets the height*/
top: 0%; /*Sets the distance from the top*/
position: relative; /*Fixes the bar at the designated position*/
background-color: #ffffff; /*Sets the background color to white*/
font-family: Helvetica, Arial, sans-serif; /*Sets the font of the headers*/
z-index: 1; /*Sets as 1 to be the top layer, bottom layers should use small index number, vice versa*/
}}
#wrapDesktopNavBar {
height: 100%;
background-color: #315AA9;
position: fixed;
width:80%;
top:0%;
overflow-y:auto;
overflow-x: hidden;
visibility: hidden;
z-index: 100;
}