由于某种原因,我无法覆盖 Chrome 中用户代理样式表中的边框间距。目前它设置为 2px,但我希望它是 0px。边框折叠被覆盖就好了,但边框间距没有。
我也尝试添加 -webkit-border-horizontal-spacing 和 -webkit-border-vertical-spacing
但是这些覆盖也不起作用。
我的 HTML 文档
<!DOCTYPE html>
<html>
<head><link href="inventorystyle.css" rel="stylesheet" type="text/css"></head>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td><img src="iron-helmet.png"></td>
<td><img src="gold-helmet.png"></td>
<td><img src="diamond-helmet.png"></td>
</tr>
</tbody>
</table>
</html>
我的inventorystyle.css
table {
border-collapse: collapse;
border-spacing: 0px;
-webkit-border-horizontal-spacing: 0px;
-webkit-border-vertical-spacing: 0px;
}