diff options
author | Amin Bandali <bandali@gnu.org> | 2020-07-19 12:13:28 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2020-07-19 12:13:34 -0400 |
commit | 912bfddd12919cda977d76b2cb02568c2d1d6fec (patch) | |
tree | b1ae12ea1469fecd7b94d912b01b46b49415351d /templates | |
parent | 93608067770dd32ea3ce5853515254d5820edf22 (diff) | |
download | emacsconf-wiki-912bfddd12919cda977d76b2cb02568c2d1d6fec.tar.xz emacsconf-wiki-912bfddd12919cda977d76b2cb02568c2d1d6fec.zip |
see if wrapping <video> in a <div> helps
Diffstat (limited to 'templates')
-rw-r--r-- | templates/vid.md | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/templates/vid.md b/templates/vid.md index 4ae41827..a0d0e3a9 100644 --- a/templates/vid.md +++ b/templates/vid.md @@ -1,5 +1,7 @@ -<video controls preload="metadata"> - <source src="<TMPL_VAR src>" type="<TMPL_VAR type>" /> - <p><em>Your browser does not support the video tag, - please download the video instead.</em></p> -</video> +<div class="vid"> + <video controls preload="metadata"> + <source src="<TMPL_VAR src>" type="<TMPL_VAR type>" /> + <p><em>Your browser does not support the video tag, + please download the video instead.</em></p> + </video> +</div> |