Skip to content

Instantly share code, notes, and snippets.

@octave
Created June 19, 2012 08:13
Show Gist options
  • Select an option

  • Save octave/2952954 to your computer and use it in GitHub Desktop.

Select an option

Save octave/2952954 to your computer and use it in GitHub Desktop.
One pixel border around a video tag
<div id="border_wrap">
<video width="640" height="360"></video>
</div>
<style>
#border_wrap {
width:640px; /* Same width than the video tag */
height:360px; /* Same height than the video tag */
padding:2px; /* If you want a 1px border add a padding of 2px, 2px border / 4px padding, etc */
background-color:red; /* Change the color you want for the border here */
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment