如何从表中删除黄色标记的边框?

时间:2017-05-26 18:24:47

标签: html css

我想在这里删除黄色标记边框我附加代码。你可以帮我把它删掉吗?我试图谷歌它但没有找到任何结果。

CSS:

    .table2 , .table2 th , .table2 tr, .table2 td {
                                border: 1px solid black;
                                border-collapse: collapse;
                                padding: 5px;
                                width: 850px;
    .table2 th.code {width: 12%}
            .table2 th.title {width: 35%}
            .table2 th.cgpa {width: 5%}
            .table2 th.credit {width: 13%}
            .table2 th.teacher {width: 35%}
            .table1 table th, td, tr {
                                border: 1px solid white;
                                padding: 0px;                           
                            }

HTML:

                        <table class="table2">
                            <thead>
                                <th class="code">Subject Code</th>
                                <th class="title">Subject Title</th>
                                <th class="cgpa">CGPA</th>
                                <th class="credit">Credit Hours</th>
                                <th class="teacher">Course Teacher</th>

                            </thead>
                            <tbody>
                                /* there has other tables data*/
                                <tr>
                                    <td>MAT-324</td>
                                    <td>Statistics & Probability</td>
                                    <td>4.00</td>
                                    <td>3 Hours</td>
                                    <td>Mr. Wahid Polash</td>
                                </tr>
                                <tr>
                                    <td colspan="3"></td>                                   
                                    <td>Total</td>
                                    <td>15</td>
                                </tr>


                            </tbody>
                        </table>

我想删除带黄色标记的边框:

Image

1 个答案:

答案 0 :(得分:0)

我要走出困境,对模糊的问题作出含糊的回答。

在你的css中:

table { 
  border: none;
}

我还建议您更具体地发布代码和问题。