使用bootstrap 3我将搜索表单放在导航栏下拉链接中,我试图使用JQuery Geocomplete插件(http://ubilabs.github.io/geocomplete/)来填充地址表单输入.但是,地址建议出现在表单后面……有没有办法用CSS解决这个问题?
在标题中:
在文件的最后我有:
最佳答案
Google自动完成将结果包装在具有类pac-container的容器中,此容器的z-index为1000(由内联css设置).默认情况下,下拉菜单具有相同的z-index.要解决这个问题,请在.pac容器中添加更高的z-index:
原文链接:https://www.f2er.com/css/427344.html .pac-container { z-index:2000 !important; }
参考文献:
> http://benkammerling.wordpress.com/2012/02/17/google-maps-places-autocomplete-styling-in-css/
> How do you style the dropdown on Google Places Autocomplete API?