I\'m trying to display an image over a video (html5). If I put an instead of the video ... it works but when I put a the video is over the image :/ What could I do ?
Link: http://jsfiddle.net/kNMnr/1487/
Use position in CSS3 with z-index.
Logo
CSS:
#video_box { position:relative; } #video_overlays { position:absolute; width:160px; min-height:40px; background-color:#dadada; z-index:300000; bottom:10px; left:10px; text-align:center; }