I\'m just messing around with some HTML5, and I was trying to center a video on the page. For some reason I can\'t get it to center. I\'ve tried to add a class to the video tag
All you have to do is set you video tag to display:block; FTW the default is inline-block FTL.
display:block;
inline-block
Try this
.center { margin: 0 auto; width: (whatever you want); display: block; }