web-dev-qa-db-fra.com

Pourquoi TR ne prend pas de style?

CSS

table tr {border-bottom:1px solid #008999}

HTML

<table width="100%" cellspacing="0" cellpadding="0">
   <thead>
      <tr>
         <th scope="col">one</th>
         <th scope="col">two</th>
         <th scope="col">three</th>
      </tr>
   </thead>
   <tbody>
      <tr>
         <th scope="row">Hello</th>
         <td>&nbsp;</td>
         <td>&nbsp;</td>
      </tr>
   </tbody>
</table>
35
Jitendra Vyas

Ajouter:

table
{
    border-collapse: collapse;
}

Sinon trne crée pas de bloc unique .

Exemple simple:

table
{
  border: 5px solid #900;
  background: #fff;
}
tr
{
  border: 5px solid #090;
}
td
{
  background: #ccc;
  padding: 5px 0;
}

table + table
{
  border-collapse: collapse;
}
<table>
  <tr>
    <td>def</td>
    <td>ault</td>
  </tr>
</table>
<table>
  <tr>
    <td>coll</td>
    <td>apse</td>
  </tr>
</table>
46
fuxia

Essayez de donner

table tr th {border-bottom:1px solid #008999}

Ensuite, vous pouvez utiliser

table { border-collapse: collapse; }
table tr {border-bottom:1px solid #008999; }

Voir Le modèle de bordure qui s'effondre

8
rahul