html5 - Inputfield over a Video -


i have input field want put on video.

i thought easy sadly isn't.

the problem want videos drag & dropable later , cannot use position absolute because of that.

the inputfield @ right of video.

i've used div able layer videos & inputs, works fine position absolute need tells input box (the div) show -33px current position on x axis.

i can't find this.

<style type="text/css"> img (z-index:1;) input {width:33px; height:13px; position:absolute:left:50px;}  #div1 {     position: absolute;     left: 100px;     top: 100px;     z-index: 1; }  #div2 {     position: relative;     left: -33px;     z-index: 2; }  </style> 


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -