I\'ve been working on this for hours trying to figure out why the supposedly simple autocomplete wasn\'t showing up.
It turns out that in my code, the input element i
There's another case where .pac-container
won't show up: when u use fixed positioned containers and u leave the without actual relative/static childs the
collapses to
0
height or to so small that the bottom edge is higher than where the .pac-container
would appear. In such case you can see with devtools that pac-container is in right position, and has height, but not visible.
body{min-height:calc(100vh)}
could help.