我知道这可能是微不足道的,但我真的不知道出了什么问题。

我无法从 table 上取下边框。

这是HTML

<table width="100%" border="0" cellpadding="0" cellspacing="0" style="border: none;padding: 0">

我也试过了
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="border:0;padding: 0" class="nothing">

但这没用。谢谢。

最佳答案

您还应该为td元素(不仅是表本身)和border:none;设置outline:none;border-collapse: collapse;
由于您上的课“没什么”,请尝试:

.nothing
{
   border-collapse:collapse;
}
.nothing td
{
   border:none;
   outline:none;
}

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

10-16 17:42