Aligning Video frame on left

I need the correct CSS code to move the Video frame to the left margin. Can anyone tell me the correct code or if this is possible?

The settings below do not work. The frame stays centered. Changing the text alignment setting has no effect either. Thanks for your help.

css video block

Roger

You need change this líne:

text-align: left;

Maybe try this. You may need to set additional padding on the left though.

div.video-block {
    display: inline-block;
    text-align: left;
}

Yes, this appears to work. Thank You.