Remove commented divs and unify body styling in VideoJS HTML

Cleaned up index-embed.html and index.html by removing commented-out div elements and applying consistent body padding and margin styles. This improves code readability and ensures a uniform layout.
This commit is contained in:
Yiannis Christodoulou 2025-10-03 22:06:11 +03:00
parent b224a66e74
commit 2e07304405
2 changed files with 1 additions and 3 deletions

View File

@ -7,7 +7,6 @@
<title>VideoJS</title> <title>VideoJS</title>
</head> </head>
<body style="padding: 0; margin: 0"> <body style="padding: 0; margin: 0">
<!-- <div id="video-js-root-main"></div> -->
<div id="page-embed"> <div id="page-embed">
<div id="video-js-root-embed" class="video-js-root-embed"></div> <div id="video-js-root-embed" class="video-js-root-embed"></div>
</div> </div>

View File

@ -6,9 +6,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VideoJS</title> <title>VideoJS</title>
</head> </head>
<body> <body style="padding: 0; margin: 0">
<div id="video-js-root-main" class="video-js-root-main"></div> <div id="video-js-root-main" class="video-js-root-main"></div>
<!-- <div id="video-js-root-embed"></div> -->
<script type="module" src="/src/main.jsx"></script> <script type="module" src="/src/main.jsx"></script>
</body> </body>
</html> </html>