gpt4 book ai didi

javascript - 使用 css 以相同的方式对齐元素

转载 作者:搜寻专家 更新时间:2023-10-31 08:40:27 25 4
gpt4 key购买 nike

我是网络开发的新手。

我有以下代码:

.notation {
width: 170%;
margin-left: -238px;
}

.mytable {
margin: 0.5em auto;
font-size: 90%;
position: relative;
width: 59%;
}

table.mytable>*>tr>td {
border: 1px solid #a2a9b1;
padding: 0.2em 0.4em;
}

table.mytable {
background-color: #f8f9fa;
color: #222;
margin: 1em 0;
border: 1px solid #a2a9b1;
border-collapse: collapse;
}
<div class="col-md-12 table-responsive notation" ng-if="(documentType !== 'jobDescription')">
<table class="mytable" style="margin:0.5em auto; font-size:90%;position:relative;width:60%;margin-bottom:13px;">
<tbody>
<tr>
<td style="width:2.5em; background-color:#fce8e8;text-align:center;"><b></b></td>
<td>Full Name</td>
<td style="width:2.5em; background-color:#e2d6f1;text-align:center;"></td>
<td>Email</td>
<td style="width:2.5em; background-color:aqua;text-align:center;"><b></b></td>
<td>Telephone Number</td>
<td style="width:2.5em; background-color:#ccfcdd;text-align:center;"><b></b></td>
<td>Total Experience</td>
<td style="width:2.5em; background-color:skyblue;text-align:center;"><b></b></td>
<td>Skill Set</td>
</tr>
</tbody>
</table>
<table class="mytable" style="margin:0.5em auto; font-size:90%;position:relative;width:60%;margin-bottom:13px;">
<tbody>
<tr>
<td style="width:2.5em; background-color:#d1cff7;text-align:center;"><b></b></td>
<td>Company Experience</td>
<td style="width:2.5em; background-color:#e8dca7;text-align:center;"></td>
<td>Education</td>
<td style="width:2.5em; background-color:#10eabe;text-align:center;"><b></b></td>
<td>Project</td>
<td style="width:2.5em; background-color:#aee8dc;text-align:center;"><b></b></td>
<td>Project</td>
<td style="width:2.5em; background-color:#f2d7da;text-align:center;"><b></b></td>
<td>Address</td>
</tr>
</tbody>
</table>
</div>

现在输出看起来像

enter image description here

但是在这里,发生了什么,这些东西没有对齐,我的意思是 FullName 占用的空间很小,但是 companyExperience 占用的空间很大,所以我想让每个元素对齐。

那么,我该怎么做呢?

已更新-

enter image description here

我得到了这种类型的输出。

最佳答案

这是您想要的那种输出吗?

.notation {
width: 170%;
margin-left: -238px;
}

.mytable {
margin: 0.5em auto;
font-size: 90%;
position: relative;
width: 59%;
}

table.mytable>*>tr>td {
/*border: 1px solid #a2a9b1;*/
padding: 0.2em 0.4em;
}

table.mytable {
background-color: #f8f9fa;
color: #222;
margin: 1em 0;
/*border: 1px solid #a2a9b1;*/
border-collapse: collapse;
}
<div class="col-md-12 table-responsive notation" ng-if="(documentType !== 'jobDescription')">
<table class="mytable" style="margin:0.5em auto; font-size:90%;position:relative;width:60%;margin-bottom:13px;">
<tbody>
<tr>
<td style="width:2.5em; background-color:#fce8e8;text-align:center;"><b></b></td>
<td>Full Name</td>
<td style="width:2.5em; background-color:#e2d6f1;text-align:center;"></td>
<td>Email</td>
<td style="width:2.5em; background-color:aqua;text-align:center;"><b></b></td>
<td>Telephone Number</td>
<td style="width:2.5em; background-color:#ccfcdd;text-align:center;"><b></b></td>
<td>Total Experience</td>
<td style="width:2.5em; background-color:skyblue;text-align:center;"><b></b></td>
<td>Skill Set</td>
</tr>
<!--/tbody>
</table>
<table class="mytable" style="margin:0.5em auto; font-size:90%;position:relative;width:60%;margin-bottom:13px;">
<tbody-->
<tr>
<td style="width:2.5em; background-color:#d1cff7;text-align:center;"><b></b></td>
<td>Company Experience</td>
<td style="width:2.5em; background-color:#e8dca7;text-align:center;"></td>
<td>Education</td>
<td style="width:2.5em; background-color:#10eabe;text-align:center;"><b></b></td>
<td>Project</td>
<td style="width:2.5em; background-color:#aee8dc;text-align:center;"><b></b></td>
<td>Project</td>
<td style="width:2.5em; background-color:#f2d7da;text-align:center;"><b></b></td>
<td>Address</td>
</tr>
</tbody>
</table>
</div>

我只更改了您的一些代码作为注释。 (在上面检查)
您不需要使用两个 table,只需两个 tr

关于javascript - 使用 css 以相同的方式对齐元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49981961/

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