For some reason with the Safari browser, the drop-down shows in front of the video player. Which is what I want. With other browsers, it does the opposite.
I agree, but z-indexing only works with elements that have a declared position. http://www.w3schools.com/Css/pr_pos_z-index.asp
To work properly be sure you have a declared position for the parent container. From a previous post:
The thing missing from your positioning is that unless the parent element also has a declared position, the child will do 1 of 2 things.
If position:relative, it will position as desired but space will be left as though that element was still in the natural flow. So you may move the 500 X 100 element down and over, but a 500 X 100 space will be left, as though it was still there.
If position:absolute, child is positioned relative to browser window and that position does not change even if window contracts or expands.
Bookmarks