无法删除html表顶部的行

时间:2013-04-18 20:04:40

标签: html-table border borderless

我正在构建一个网站,其中包含一个位于主页中间的表格,我似乎无法从其顶部消失(看起来像<hr>行)。这是指向http://marccary.com/test页面的链接,这里是我用于表格的代码:

<table cellspacing="0" cellpadding="0" border="none">
  <colgroup border="none">
    <col span="1" width="400" >
    <col span="1" width="400" >
  </colgroup>
  <tr>
    <td height="225" width="600"><p align="center">&nbsp;
&nbsp;
&nbsp;
<iframe width="400" height="166" scrolling="no" frameborder="no" src="http://w.soundcloud.com/player/?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F84936057%3Fsecret_token%3Ds-4zQJw&show_artwork=true&secret_url=true"></iframe><br><span style="font-size:20px;"><a href="https://soundcloud.com/marccary" style="color:#white;">Marc Cary on Soundcloud>></a></span></p></td>
    <td height="225" width="600"><p align="center">&nbsp;
<iframe width="400" height="225" src="http://www.youtube.com/embed/j9GhIaaEC6c" frameborder="0" allowfullscreen></iframe>
<span style="font-size:20px;"><a href="http://www.youtube.com/marccary" style="color:#white;">Marc Cary's YouTube channel>></a></savaipan></p></td></tr></table>

我已经进入我的CSS并尝试确保表格上没有边框。我将以下代码放入我的CSS样式表中:

table {
    border-collapse: separate;
    border-spacing: 0;
    border: none !important;
    border-top: none;
    border-bottom: none;
}
caption,
th {
    border-bottom: none;
    border: none;
    border-top: none;
}
td {
    font-weight: normal;
    text-align: left;
    border-top: none;
    border: none;
    border-bottom: none;
}
tr {
    border: none;
    border-bottom: none;
    border-top: none;
}

仍然没有运气。有没有人有建议?

2 个答案:

答案 0 :(得分:0)

你有一个CSS设置:

.entry-content td, .comment-content td {
   border-top: 1px solid #EDEDED;
}

这就是你看到的边界。

这个CSS

border-top: none;
border: none;
border-bottom: none;

可以缩短为

border: none;

答案 1 :(得分:0)

将以下内容添加到CSS中:

hr {
    height: 0px !important;
}

您似乎正在使用CMS软件开发自己的网站,而您正在使用的模板实际上是<hr>

<div id="page" ...>
    <header id="masthead" ...>
        <hgroup ...>
        <nav id="site-navigation" ...>
        <hr>
    </header>
    <div id="main" ...>
    <footer ...>
</div>