Rounded corners of uploaded videos?
Posted: Mon Jan 22, 2024 10:13 am
Everything on my homepage is rounded, so it's important that the videos are also rounded. Object Properties/Style/ Radius not work.
I try also this in Html head:
<style>
video {
margin-bottom:10px;
/* Rounded corners (Firefox 5 only) */
-moz-border-radius:14px;
-webkit-border-radius:14px;
border-radius:14px;
}
</style>
Not work
--------------------------------------------------------------------------------------------------
But works with Visual Studio Code!
<!DOCTYPE html>
<html>
<head>
<title>Multimedia CSS Styling: Video with rounded corners</title>
<style>
video {
margin-bottom:10px;
-moz-border-radius:20px;
-webkit-border-radius:20px;
border-radius:20px;
}
</style>
</head>
<body>
<video controls preload="metadata">
<source src="parrots-small.mp4" type="video/mp4">
</video>
</body>
</html>
Screenshot: https://ibb.co/L1qyzdS
----------------------------------------------------------------------------------------------------
Any Tips and Tricks to make it work in wysiwygwebbuilder?
THX
I try also this in Html head:
<style>
video {
margin-bottom:10px;
/* Rounded corners (Firefox 5 only) */
-moz-border-radius:14px;
-webkit-border-radius:14px;
border-radius:14px;
}
</style>
Not work
--------------------------------------------------------------------------------------------------
But works with Visual Studio Code!
<!DOCTYPE html>
<html>
<head>
<title>Multimedia CSS Styling: Video with rounded corners</title>
<style>
video {
margin-bottom:10px;
-moz-border-radius:20px;
-webkit-border-radius:20px;
border-radius:20px;
}
</style>
</head>
<body>
<video controls preload="metadata">
<source src="parrots-small.mp4" type="video/mp4">
</video>
</body>
</html>
Screenshot: https://ibb.co/L1qyzdS
----------------------------------------------------------------------------------------------------
Any Tips and Tricks to make it work in wysiwygwebbuilder?
THX
