gpt4 book ai didi

html - 我无法从我的 WP 网站上的表格中删除边框

转载 作者:行者123 更新时间:2023-11-27 23:25:44 25 4
gpt4 key购买 nike

我无法隐藏表格周围的边框。我使用了匈牙利 ID 和图片名称,但我认为 ID 无关紧要,JS 运行良好。我无法隐藏它,但我可以让它大于 0px。

我已经尝试过 !importantborder: noneborder: 0px,或者简单地尝试将其更改为白色。

#tablazat {
border-bottom: 0px solid blue;
}



<table id="tablazat">
<tbody>
<tr>
<th>
<img onclick="kep1('inferno')" class="mapok" id="inferno" src="http://www.mathiaszlan.nhely.hu/wp-content/uploads/2019/09/inferno.png" disabled="true"></th>
<th>
<img onclick="kep1('train')" class="mapok" id="train" src="http://www.mathiaszlan.nhely.hu/wp-content/uploads/2019/09/train.png" disabled="true"></th>
</tr>
<tr>
<th>
<img onclick="kep1('mirage')" class="mapok" id="mirage" src="http://www.mathiaszlan.nhely.hu/wp-content/uploads/2019/09/mirage.png" disabled="true"></th>
<th>
<img onclick="kep1('nuke')" class="mapok" id="nuke" src="http://www.mathiaszlan.nhely.hu/wp-content/uploads/2019/09/nuke.png" disabled="true"></th>
</tr>
</tbody>
</table>

最佳答案

边框位于 thtd 元素周围(在您的 style.css 中):

th, td {
border: 1px solid #333;
padding: 5px;
text-align: center;
}

如果你想从这个特定的表中删除它,你可以通过添加:

#tablazat th {
border: none;
}

关于html - 我无法从我的 WP 网站上的表格中删除边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57794758/

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