我如何在引导表中删除此边框

时间:2020-03-17 14:45:20

标签: html css bootstrap-4 border bootstrap-table

我正在使用引导程序4上的表;

<div class="col-md-9"><h3>last updated</h3>
            <div class="liste">
                <table class="table table-dark table-md table-responsive-md" id="tablex">
                    <thead class="thead-inverse">
                        <tr>
                            <th>#</th>
                            <th>Manga Adı</th>
                            <th>Bölümler</th>
                            <th>Yükleyen</th>
                            <th>Linkler</th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td><i class="fas fa-file-download"></i></td>
                            <td>Deneme deneme</td>
                            <td>1-56</td>
                            <td>libero1i</td>
                            <td>yadi.sk/bilmemne</td>
                        </tr>

CSS:

    #tablex {
    border-collapse: collapse;
    border-radius: 1em;
    overflow: hidden;
    border: 0px;
}
#tablex tr, th {
    padding: 1em;
    border-bottom: 2px solid white; 
}

当我添加border: 0px;时,我也想删除半径。

enter image description here

我该怎么办? (这是我的第一篇文章,对不起我的错误)

1 个答案:

答案 0 :(得分:0)

我认为您正在查看错误的元素-此边框位于表的父元素上,或者位于顶部标题上。

继续阅读下一次如何询问good question的知识,这将有助于我们双方回答您,并解决您的问题。