How do I stretch a html5 video to width:600 and height 200?

How do I stretch a html5 video to width:600 and height 200?When I try, the navigation bar increases in size but the video stays smallCode:\[code\]<!DOCTYPE html><html><body><video width="600" height="200" controls> <source src="http://media.w3.org/2010/05/sintel/trailer.mp4" type="video/mp4"> Your browser does not support the video tag.</video></body></html>\[/code\]Jsfiddle: http://jsfiddle.net/ke8HX/1/
 
Back
Top