我正在使用MaterialiseCSS http://materializecss.com/dropdown.html的下拉菜单,但我希望该菜单向上打开而不是向下打开。我可以通过选项执行此操作,还是必须在框架中直接更改某些内容?我尝试在选项和其他选项中使用gutter,但它不起作用。
答案 0 :(得分:1)
这可以解决您的问题。
将此设置为true belowOrigin:true, //显示按钮下方的下拉列表
$('.dropdown-button').dropdown({
inDuration: 300,
outDuration: 225,
constrainWidth: false,
gutter: 0, // Spacing from edge
belowOrigin: true, // Displays dropdown below the button
alignment: 'left', // Displays dropdown with edge aligned to the left
stopPropagation: false // Stops event propagation
}
);
答案 1 :(得分:-1)
尝试使用此样式:
.autocomplete-content {
top: 46px !important;
max-height: 300px !important;
}
这会在下面保留自动填充
对我来说,这很好用