H1标签超出菜单

时间:2017-04-12 17:07:40

标签: javascript css iphone wordpress responsive

以下是我正在制作的网站:http://oca.darkstarmedia.net/about/a-history-of-the-oca/

问题是h1标记位于下拉菜单中。这只发生在iPhone而不是模拟器上。

enter image description here

我该如何解决?

1 个答案:

答案 0 :(得分:1)

您可能只需将下拉列表的z-index属性设置为高于h1标记。请注意,z-index仅在应用它的元素设置了position属性时才有效。这是一个例子:

.dropdown {
   position: relative;
   z-index: 50;
}

以下是了解有关z-index的更多信息的链接:https://www.w3schools.com/cssref/pr_pos_z-index.asp

祝你好运!