“HTML положите текст OVR TOP MP4” Ответ

HTML положите текст OVR TOP MP4

<div class="container">
    <video id="video" width="770" height="882" onclick="play();">
        <source src="video/Motion.mp4" type="video/mp4" />
    </video>
    <div class="overlay">
        <p>Content above your video</p>
        <form>
            <p>Content Below Your Video</p>
            <label for="input">Form Input Label</label>
            <input id="input" name="input" value="" />
            <button type="submit">Submit</button>
        </form>
    </div>
</div>
Bad Bee

HTML положите текст OVR TOP MP4

.container { position:relative; }
.container video {
    position:relative;
    z-index:0;
}
.overlay {
    position:absolute;
    top:0;
    left:0;
    z-index:1;
}
Bad Bee

Ответы похожие на “HTML положите текст OVR TOP MP4”

Вопросы похожие на “HTML положите текст OVR TOP MP4”

Больше похожих ответов на “HTML положите текст OVR TOP MP4” по HTML

Смотреть популярные ответы по языку

Смотреть другие языки программирования