为了账号安全,请及时绑定邮箱和手机立即绑定

表格样式不正确

表格样式不正确

月关宝盒 2023-10-17 19:56:20
我有一张桌子正在尝试设计样式。我想在每个bottom-border下面都有一个,但无论我放什么,它都不适用。我什至尝试设置颜色,但这也没有给出。有什么想法我做错了吗?theadtrthead.border-bottom {        border-collapse: collapse;        border-bottom: 2px solid #CCD5DE;    }    table {        width: 100%;        max-height: 500px;        overflow: scroll;    }        thead {        color: red;    }        th {        font-weight: 700;        font-size: 20px;        letter-spacing: 1px;        text-align: left;                padding-top: 20px;        padding-bottom: 20px;    }        td {        font-weight: 400;        font-size: 18px;        letter-spacing: .75px;        text-align: left;                padding-top: 20px;        padding-bottom: 20px;    }<div class="spaced-div">  <table>    <thead class="bottom-border">      <tr>        <th>Date</th>        <th>Stock</th>        <th>Quantity</th>        <th>Price</th>        <th>Fees</th>        <th>Subtotal</th>      </tr>    </thead>    <tbody>      <tr class="border-bottom">        <td>March 21, 2020</td>        <td>DMC</td>        <td>1,330</td>        <td>5.71</td>        <td>23.54</td>        <td>7,617.84</td>      </tr>    </tbody>  </table></div>
查看完整描述

1 回答

?
慕妹3242003

TA贡献1824条经验 获得超6个赞

这里有两个主要问题,


1) CSS属性border-collapse: collapse;应该在table元素下,例如,


table {

    width: 100%;

    max-height: 500px;

    overflow: scroll;

    border-collapse: collapse;

}

2)确保和具有相同的类名.border-bottom。theadtbody tr


.border-bottom {

    border-bottom: 2px solid #CCD5DE;

}


table {

    width: 100%;

    max-height: 500px;

    overflow: scroll;

    border-collapse: collapse;

}


thead {

    color: red;

}


th {

    font-weight: 700;

    font-size: 20px;

    letter-spacing: 1px;

    text-align: left;


    padding-top: 20px;

    padding-bottom: 20px;

}


td {

    font-weight: 400;

    font-size: 18px;

    letter-spacing: .75px;

    text-align: left;


    padding-top: 20px;

    padding-bottom: 20px;

}

<div class="spaced-div">

    <table>

      <thead>

        <tr class="border-bottom">

          <th>Date</th>

          <th>Stock</th>

          <th>Quantity</th>

          <th>Price</th>

          <th>Fees</th>

          <th>Subtotal</th>

        </tr>

      </thead>

      <tbody>

        <tr class="border-bottom">

          <td>March 21, 2020</td>

          <td>DMC</td>

          <td>1,330</td>

          <td>5.71</td>

          <td>23.54</td>

          <td>7,617.84</td>

        </tr>

      </tbody>

   </table>

</div>


查看完整回答
反对 回复 2023-10-17
  • 1 回答
  • 0 关注
  • 43 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信