2017-05-26 78 views
-5

我想在這裏刪除黃色標記的邊框我附上了代碼。你能幫我解決這個問題嗎?我試圖谷歌它,但沒有找到任何結果。如何從桌面上刪除黃色標記的邊框?

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

+2

所以找到導致黃色邊框的代碼並將其刪除。 – ceejayoz

+0

顯然,我們需要查看您的代碼才能提供幫助。爲什麼不把它編輯成問題? – halfer

+0

我已添加代碼 – Naim886

回答

0

我要出去肢體和給一個模糊的問題提供一個模糊的答案。

在你的CSS:

table { 
    border: none; 
} 

我還建議你更具體發佈您的代碼,你的問題。

+0

.table2,.table2日.table2 TR,.table2 TD { \t \t \t \t \t \t \t邊界:1px的實心黑色; \t \t \t \t \t \t \t border-collapse:collapse; \t \t \t \t \t \t \t padding:5px; \t \t \t \t \t \t \t width:850px; – Naim886

+0

該代碼中的任何內容都不會爲您提供黃色邊框。有其他代碼或者一個不可思議的瀏覽器擴展。 – ceejayoz

+0

我已經添加了代碼,它不起作用 – Naim886