📌  相关文章
📜  自动完成小部件在模式弹出窗口中不起作用 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:34.999000             🧑  作者: Mango

代码示例1
/*
at the time of writing 13/03/2021 Google change the class for
it's container from .ui-autocomplete to .pac-container.
The problem is that the z-index of the suggestions element is lower
that the modal element so it works but it's shown below the modal
*/
.pac-container {
    z-index: 10000 !important;
}