gpt4 book ai didi

HTML新手——视频和表格干扰

转载 作者:太空宇宙 更新时间:2023-11-03 19:36:11 26 4
gpt4 key购买 nike

所以我正在为自己制作我的第一个网站。我想要一个 mp4 视频,在视频的右侧有一张 table 。我让他们各自独立工作,但不一起工作。

即当视频代码就位时,表格就消失了。我不擅长解释这个所以我让你们自己看看。

<!DOCTYPE html>
<html>
<head>
<style>
*{font-family: Arial, Helvetica, sans-serif;}
body {margin:0;}


ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
position: fixed;
top: 0;
width: 100%;
}

li {
float: left;
border-right: 1px solid #bbb;
}

li:last-child {border-right: none;}

li a {
display: block;
padding: 14px 16px;
color: white;
text-align: center;
text-decoration: none;
}

li a:hover:not(.active) {
background-color: #111;
}

.active {
background-color: #808080;
border: 1px solid black;
}
table, td, th {border: 1px solid black;}

table {
border-collapse: collapse;
width: 50%;
}

th {
text-align: center;
height: 25px;
color:white;
background-color: #808080;
}

tr:hover {background-color: #f5f5f5}

td{text-align: left;}

th, td {
padding:15px;
text-align: left;
border-bottom: 1px solid #ddd;
}
</style>
</head>
<body>

<ul>
<li><a href="#home\home.html">Home</a></li>
<li><a href="#profile\profile.html">Profile</a></li>
<li><a href="#about">About</a></li>
<li><a href="#matches">Matches</a></li>
<li><a href="#highlights">Highlights</a></li>
<li><a href="#setup">Setup</a></li>
<li><a href="#shop">Shop</a></li>
<li style="float:right"><a class="active" href="#contact">Contact</a></li>
</ul><br>
<hr>

<video width="200" height"500" autoplay loop>
<source src="promo.mp4" type="video/mp4"
</video>
<hr><br>

<div style="overflow-x:auto;">
<table align="right">
<tr>
<th>Name</th>
<th>Birth</th>
<th>Nationality</th>
<th>Team</th>
<th>Role</th>
<th>Rank</th>
<th>Total Winnings</th>
<th>Game(s)</th>
<th>Past Teams</th>
</tr>
<tr>
<td>qwerty</td>
<td>wqert</td>
<td>wqer</td>
<td>wqer</td>
<td>qwer</td>
<td>qwer</td>
<td>qwer</td>
<td>qwer</td>
<td>qwer</td>
</tr>
</table>
</div>

</body>
</html>

我敢肯定那里有很多菜鸟的错误,这是意料之中的,不要太苛刻 :)我知道视频不会出现在你的那一端,但也许使用你自己的随机 mp4?无论如何谢谢。

最佳答案

我将您的代码转换为下面的 fiddle 来尝试一下。

https://jsfiddle.net/fmmnsw04/1/

更新:而不是水平线 <hr />标签我会使用 <div>改为使用顶部和底部边框,因为您可以更好地控制边距、颜色和宽度等外观。

我认为导致布局问题的其中一种样式是 ul 具有 position:fixed;

我更新了 fiddle ,使视频和表格并排显示。以下是演示该要求的解决方案的部分:

.datawrapper {
display: table;
width: 100%;
border-top: 2px solid black;
border-bottom: 2px solid black;
margin: 10px 0;
}

.videodata,
.tabledata {
float: left;
vertical-align: bottom;
}
.videodata {
width: 40%;
}
.videodata video {
vertical-align: bottom;
}
.tabledata {
width: 60%;
overflow-x: auto;
}
<div class="datawrapper">
<div class="videodata">
<video width="100%" controls="controls">
<source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
<source src="https://www.w3schools.com/html/mov_bbb.ogg" type="video/ogg"> Your

browser does not support HTML5 video.
</video>
</div>
<div class="tabledata">
<table>
</table>
</div>
</div>

关于HTML新手——视频和表格干扰,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43416862/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com