I discovered Safari's weird positioning behavior.
For example:
#parent { position:fixed; overflow-x: hidden; height:30px; } #toolTip-child { position:fixed display:block; top:10px; left:16px; height:100px; }
As far as I know, when the position is set as fixed (or absolute, in this case it does not matter), the element must be broken out of scope and visualized somehow independently.
It works, as I mentioned above, in every browser that we use to test the site we are developing, in addition to Safari.
In Safari, if the parent is fixed and overflow-x . is added no matter how I place the child ( position:fixed , top , left → it doesn't matter), if it overflows the parent, it is not displayed.
I clicked on a wall and have no idea how to get Safari to work together.
If any of you have any ideas, this will be appreciated.
html css safari
sznowicki
source share