Ionut
Ionut

Reputation: 1

Align this video to right

I want to align this :

<video width="300" height="200" autoplay="autoplay">
    <source src="video/supercoolvideo.mp4" type="video/mp4" />
</video>

To paste it in wordpress text and embed it with a link to a page.

Is it possible?

Upvotes: 0

Views: 841

Answers (1)

Sherin
Sherin

Reputation: 21

<video width="300" height="200" autoplay="autoplay" style="float: right;">
<source src="video/supercoolvideo.mp4" type="video/mp4" />

or

<div style="text-align:right;"><video width="300" height="200" autoplay="autoplay"><source src="video/supercoolvideo.mp4" type="video/mp4" />

Upvotes: 1

Related Questions