+ 19
How to adjust the width and height of a video___?????!
11 Answers
+ 17
Always specify both the height and width attributes for videos. If height and width are set, the space required for the video is reserved when the page is loaded. However, without these attributes, the browser does not know the size of the video, and cannot reserve the appropriate space to it. The effect will be that the page layout will change during loading (while the video loads).
:Ā Do not rescale video with the height and width attributes! Downsizing a large video with the height and width attributes forces a user to download the original video (even if it looks small on the page). The correct way to rescale a video is with a program, before using it on a page.
<videoĀ width="320"height="240"Ā controls>
Ā Ā <sourceĀ src="movie.mp4"
type="video/mp4">
Ā Ā <sourceĀ src="movie.ogg"
type="video/ogg">
Ā Your browser does not support the video tag.
</video>
+ 4
Use the w and h attributes
+ 3
(Some browsers donāt support this code and this is not html5.) Here is the code:
<embed src="(Your video file).mp4" width="(Your width)" height="(Your width">
</embed>
+ 3
Chioma Abonyi Microsoft word
+ 3
Using the width and height attribute in the video opening tag
+ 2
What program is then used to rescale?
+ 2
hi
+ 2
You can add the width and height attributes in opening tag of the video.
It works.
+ 2
U can use embed code for online videos embed code has width and height adjustable and for offline u can width and height attribute
+ 2
uhh no