加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 资源网站 > 资源 > 正文

html – 摆脱表头第一个元素右边界的最有效方法是什么?

发布时间:2020-12-14 23:29:25 所属栏目:资源 来源:网络整理
导读:我有一张桌子,我想摆脱我的第一个td的边界右边. HTML div class="container" div class="row" style=" margin-right: 15px; margin-left: 15px;" div class="col-xs-3" div id="piechart"/div /div div class="col-xs-9" table class="table table-bordered
我有一张桌子,我想摆脱我的第一个td的边界右边.

HTML

<div class="container" <div class="row" style=" margin-right: 15px; margin-left: 15px;">
    <div class="col-xs-3">
        <div id="piechart"></div>
    </div>
    <div class="col-xs-9">
        <table class="table table-bordered piechart-key ">
            <thead>
                <th colspan="2" ></th>
                <th></th>
                <th>Item Summary</th>
                <th>Item List</th>
            </thead>
            <tbody>
                <tr>
                    <td width="30"></td>
                    <td width="200">&gt; 50% of students answered these items correctly</td>
                    <td width="50">5/25</td>
                    <td width="100">5,10,15,19,23</td>
                </tr>
                <tr>
                    <td width="30"></td>
                    <td width="200">50% up to 75% of students answered these items correctly</td>
                    <td width="50">8/25</td>
                    <td width="100">3,7,11,13,14,16,21,22</td>
                </tr>
                <tr>
                    <td width="30"></td>
                    <td width="200">&ge; 75% of students answered these items correctly</td>
                    <td width="50">12/25</td>
                    <td width="100">1,2,4,6,8,9,12,17,18,20,24,25</td>
                </tr>
            </tbody>
        </table>
    </div>
</div>
</div>
<hr style="height:5pt; visibility:hidden;" />

我试过了

.table th > td:first-child {
  border-right: none;
}

没有效果,边界仍在那里.

Here is my JSFiddle

摆脱表头第一个元素右边界最有效的方法是什么?

解决方法

你突出显示的那个不是边界,它是两个不同的列.
使用此代码折叠它们
<td colspan="2"> </td>

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读