HTML - Video Element (Movie)

About

The video 1) 2) represents a video or movie.

It can be lazy or preloaded.

Example

<video width="320" height="240" controls="controls">
    <source src="/_media/video/flipbook_within_a_flipbook_flipception.mp4" type="video/mp4">
</video>
  • or without the child sub element
<video 
   src="tgif.vid" 
   poster="/poster.jpg"
   autoplay controls>
</video>

Style

To overcome that the images overflow their container, you can use this rule

img, embed, object, video {
  max-width: 100%;
}





Discover More
HTML - Browsing context (Environment)

A browsing context is a navigational context (environment) in which HTML document are rendered to the user. Each browsing context has: its own variable its own cookie its own dom and eventually...



Share this page:
Follow us:
Task Runner