3

我有一个下拉菜单来更改语言,但是当列表变长并且菜单现在位于另一个元素后面时。

我真的不知道需要改变什么,或者我必须应用什么 CSS 才能使下拉列表保持在其他元素的顶部,以便他们仍然可以看到列表并选择它们。

在此处输入图像描述

我正在尝试获取大多数应用于元素的 CSS,但它们是“LESS”

这些是其中的一部分

li.lang-picker:first-child {
  border-right: none;
}
.ui-append.ui-select {
  background-color: white;
}
#lang-picker {
  margin: -7px 15px 0 -18px;
  border-color: transparent;
}
#lang-picker:hover {
  border-color: #CCC;
}
#lang-picker ul {
  background: white;
  display: inline-block;
}
#lang-picker ul li {
  display: block;
}
#lang-picker .ui-select-menu {
  width: auto;
  border-color: #CCC;
}
#lang-picker .ui-select-menu ul {
  width: auto;
}
#lang-picker .ui-selected::before {
  margin-right: 5px;
}
#lang-picker .ui-smedium {
  width: auto;
}
#lang-picker > .icon {
  background: none;
  color: #555;
  padding: 0 10px 0 0;
}
#lang-picker > .icon:hover {
  background: none;
  color: #555;
}
/*********************************************************
* Filter
*/
.gallery-header .header {
  float: left;
  padding-bottom: 10px;
  font-family: 'Open Sans Light', sans-serif;
  -webkit-font-smoothing: antialiased;
  margin-right: 20px;
}
.gallery-header .header h1,
.gallery-header .header p {
  display: inline;
  margin-right: 10px;
  font-weight: normal;
  letter-spacing: -0.25px;
}
.gallery-header .header h1 {
  font-size: 2.4em;
  line-height: 16px;
  color: #3fb58e;
}
.gallery-header .header p {
  font-size: 1.4em;
  color: #555555;
}
.gallery-header .header p a {
  color: #20abdc;
  text-decoration: none;
}
.gallery-header .header p a:hover {
  text-decoration: underline;
  color: #4abce5;
}
#tools h1 {
  line-height: 1.4em;
}
.filter {
  position: relative;
  background: #3fb58e;
  float: right;
  z-index: 3;
  padding: 0.5em 1em 1em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.filter label {
  color: #FFF;
  line-height: 1.6;
}
.filter #search-filter {
  border-color: #38a27f;
}
.filter #search-filter:hover {
  border-color: #2b7c61;
}
.filter #search-filter .icon {
  background: #328f70;
}
.filter #search-filter .ui-select-menu {
  border-color: #3fb58e;
}
.filter:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #3fb58e;
  margin-left: -10px;
}
4

3 回答 3

7

您可以将“z-index”属性与“位置”属性一起使用。为了使“z-index”起作用,位置应设置为“相对”。

于 2013-10-08T16:23:34.780 回答
3

给 z-index:100 或更多尝试给更多。

div.ui-select-menu
{
    z-index:100;
}
于 2013-10-08T16:23:15.050 回答
1

首先,您需要将position属性设置为非static. 如果static页面中只有(默认值)元素,则设置即可position: relative;。但是,如果有些元素position不是static,那么您需要将z-index属性设置为高于其他元素的值z-index

于 2013-10-08T16:26:42.657 回答