gpt4 book ai didi

html - HTML 表格行上方的白线

转载 作者:太空宇宙 更新时间:2023-11-03 23:15:38 24 4
gpt4 key购买 nike

我似乎无法摆脱以下 HTML 中每行/表格上方出现的白线。它只是两个简单的表格,每个表格都有一排链接到社交网站的图标。我尝试将 style="border:none" 应用于 tabletrtd 组件有用,并且也尝试过 border:none

请查看 jsfiddle - http://jsfiddle.net/3545rrnz/

<table>
<tr>
<td><a href=""><img src="facebook.png" width="35px" height="35px"></a></td>
<td width="15px"></td>
<td><a href=""><img src="instagram.png" width="35px" height="35px"></a></td>
<td width="15px"></td>
<td><a href=""><img src="pinterest.png" width="35px" height="35px"></a></td>
<td width="15px"></td>
<td><a href=""><img src="twitter.png" width="35px" height="35px"></a></td>
</tr>
</table>
<table>
<tr>
<td width="17px"></td>
<td><a href=""><img src="yelp.png" width="35px" height="35px"></a></td>
<td width="12px"></td>
<td><a href=""><img src="tripadvisor.png" width="35px" height="35px"></a></td>
<td width="12px"></td>
<td><a href=""><img src="youtube.png" width="35px" height="35px"></a></td>
</tr>
</table>

最佳答案

我建议不要为此使用表格。

更好的基于 DIV 的解决方案:

<html>
<head>
<style>
.social-icon {
float: left;
padding: 4px;
}
</style>
</head>
<body>
<div class="social-icons">
<div class="social-icon facebook"><a href=""><img src="http://www.teamcanada72.com/img%20o/icons/35x35/facebook.png" width="35px" height="35px"></a></div>
<div class="social-icon facebook"><a href=""><img src="http://www.teamcanada72.com/img%20o/icons/35x35/facebook.png" width="35px" height="35px"></a></div>
<div class="social-icon facebook"><a href=""><img src="http://www.teamcanada72.com/img%20o/icons/35x35/facebook.png" width="35px" height="35px"></a></div>
<div class="social-icon facebook"><a href=""><img src="http://www.teamcanada72.com/img%20o/icons/35x35/facebook.png" width="35px" height="35px"></a></div>
</div>
</html>

请访问- http://jsfiddle.net/3545rrnz/5/演示。您可以添加自己的图标并通过 PADDING 或 MARGINE 管理图标周围的空间。

关于html - HTML 表格行上方的白线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30695950/

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