HTML下拉框将html元素向下移动 [英] HTML Dropdown box shifting html elements downwards

查看:101
本文介绍了HTML下拉框将html元素向下移动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

因此,我尝试使下拉列表在展开时与下面的元素重叠.不幸的是,即使在同一堆叠上下文中的元素都具有位置,并且下拉容器div的z-index设置为2,问题仍然存在.而不是重叠下面的元素,而是将它们向下移动.我还尝试通过将opacity属性添加到各种元素中来绕过堆栈上下文,但这也没有用.该代码可以在下面看到:

So I'm trying to make a dropdown list overlap the elements below when expanded. Unfortunately, even when elements in the same stacking context have a position, and dropdown container div set to a z-index of 2, the issue still persists; instead of overlapping the elements below, it shifts them down. I have also attempted shuffling around the stacking context by adding the opacity property to various elements, but that hasn't worked either. The code can be seen below:

#firstone {
  z-index: 2;
}

#contain {
  height: 400px;
  width: 400px;
  background-color: rgba(100, 25, 25, 0.2);
}

body {
  text-align: center;
}

input:focus {
  outline: none;
}

.fancy_input_box {
  text-align: left;
  display: inline-block;
  margin: 40px 3% 1px;
  position: relative;
}

.fancy_input {
  font: 15px/24px "Lato", Arial, sans-serif;
  color: #aaa;
  box-sizing: border-box;
  letter-spacing: 1px;
  border: 0;
  padding: 7px 7px;
  border: 1px solid #ccc;
  position: relative;
  background: transparent;
}

.fancy_input:focus~.dropdown-content {
  display: block;
  cursor: default;
}

.fancy_input:focus~.dropdown-content>span {
  display: block;
  cursor: default;
}

.dropdown-content {
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
  width: 222px;
  overflow: auto;
  position: relative;
}

.dropdown-content:active {
  display: block;
}

.dropdown-content>span {
  padding: 12px 16px;
  display: none;
}

.dropdown-content>span:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.fancy_input~.fancy_label {
  position: absolute;
  left: 14px;
  width: 100%;
  top: 10px;
  color: #aaa;
  letter-spacing: 0.5px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  z-index: -1;
}

.fancy_input:focus~.fancy_label {
  top: -18px;
  left: 1px;
  font-size: 12px;
  color: grey !important;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
}

.fancy_input:focus {
  border: 1px solid grey !important;
}

.fancy_input:not(focus):valid~.fancy_label {
  top: -18px;
  font-size: 12px;
  left: 1px;
  color: #aaa;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
}

<!DOCTYPE html>
<html lang="en">

<head>
  <link rel="stylesheet" href="test.css">
</head>

<body>
  <div id="contain">

    <div id="firstone" class="fancy_input_box">
      <input class="fancy_input" type="text" placeholder="" maxlength="25" size="25" required>
      <label class="fancy_label">Search</label>

      <div class="dropdown-content">
        <span>a</span>
        <span>b</span>
        <span>c</span>
        <span>d</span>
        <span>e</span>
      </div>
    </div>

    <div class="fancy_input_box">
      <input class="fancy_input" type="text" placeholder="" maxlength="4" size="10">
      <label class="fancy_label">Thing</label>
    </div>

    <br>

    <div>
      <div class="fancy_input_box">
        <input class="fancy_input" type="text" placeholder="" maxlength="4" size="10">
        <label class="fancy_label">stuff</label>
      </div>

      <div class="fancy_input_box">
        <input class="fancy_input" type="text" placeholder="" maxlength="4" size="10">
        <label class="fancy_label">more stuff</label>
      </div>

      <div class="fancy_input_box">
        <input class="fancy_input" type="text" placeholder="" maxlength="4" size="10">
        <label class="fancy_label">more stuff</label>
      </div>
    </div>

  </div>
</body>

</html>

推荐答案

下拉菜单的内容应该绝对定位.

You dropdown content should be absolute positioned.

更新您的下拉样式,如下所示:

Update your dropdown styles as shown below :

.dropdown-content {
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
  width: 222px;
  overflow: auto;
  position: absolute;
  left: 0;
  top: 100%;
}

这篇关于HTML下拉框将html元素向下移动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆