为什么在响应式设计中我按钮的不可见元素会移位?

时间:2018-07-01 17:48:51

标签: android html css responsive-design responsive

我正在为以下网站进行响应式设计:

在移动视图中单击“美术作品”按钮时,会出现问题。当我单击插图按钮时,第一个菜单(由图像组成)出现在第一个菜单的下面。如果使用google chrome开发人员工具检查了此第二菜单,则表明第二菜单的一些不可见元素位于第一组按钮上方,从而导致冲突。我想知道如何使用CSS纠正此冲突。我相信罪魁祸首是#nowrap li元素,但我不知道如何在CSS中更正此问题。从使用开发人员工具所见,#nowrap li元素已从其图像链接移开了。我尝试调整#nowrap li,但没有运气。我在下面包含了HTML和CSS代码:

#navbar {
  margin-top: 100px;
  background-color: black;
  height: 280px;
  text-align: center;
  text-decoration: none;
  list-style-type: none;
  font-family: arial, helvetica, sans-serif;
}

#navbar li {
  display: inline-block;
  position: relative;
  top: 0px;
}

#navbar li a {
  padding: 1em;
  text-decoration: none;
  padding: 90px;
  margin-top: 150px;
  border: 4px solid #000;
  background-color: white;
  font-family: arial, helvetica, sans-serif;
}

#navbar li a:hover {
  background-color: red;
  color: #eee;
}

#logo {
  position: relative;
  top: 200px;
  margin-top: -60px;
  background-color: white;
  height: 85px;
  max-width: 100%;
  right: 0px;
}

.graphic {
  max-width: 100%;
  height: auto;
}

#nowrap {
  white-space: nowrap;
  position: relative;
  top: 100px;
}

#nowrap,
li {
  list-style: none;
  display: inline-block;
}

#A {
  position: relative;
  right: 0%;
}

#B {
  position: relative;
  right: 5%:
}

#C {
  position: relative;
  right: -10%;
}

#D {
  position: relative;
  right: -15%;
}

@media only screen and (max-width: 700px) {
  #navbar li {
    display: block;
    vertical-align: middle;
  }
  #logo {
    position: relative;
    top: -900px;
    right: 70px;
  }
  #whiteFile {
    height: 70px;
    top: 130px;
  }
  #nowrap li {
    display: block;
    margin-top: 10px;
  }
  #navbar li a {
    display: block;
    margin-top: 10px;
  }
  #A,
  #B,
  #C,
  #D {
    display: block;
    vertical-align: middle;
    margin-top: 20px;
    position: relative;
    top: 565px;
    right: 0px;
  }
  #item {
    top: 565px;
  }
}
<ul id="nowrap">
  <li><img id="A" src="GRAPHICSw.png" height="95" width="290"></li>
  <li>
    <a href="VIDEOS.html#item"><img id="B" src="VIDEOSb.png" height="95" width="290"></a>
  </li>
  <li>
    <a href="PHOTOS.html#item"><img id="C" src="PHOTOSb.png" height="95" width="290"></a>
  </li>
  <li>
    <a href="WEBSITES.html#item"><img id="D" src="WEBSITESb.png" height="95" width="290"></a>
  </li>
</ul>
<div id="whiteFile"></div>

1 个答案:

答案 0 :(得分:0)

这是一个简单的解决方法。我的CSS正在处理菜单中的各个图像,将它们与ul分开。我需要将图像放置位置清零并调整ul而不是图像。