2015-12-17 11 views
8

Próbuję dodać inny kolor tła do każdej komórki w pierwszym wierszu i pierwszej kolumnie tabeli.Różne kolory tła dla każdej komórki pierwszego wiersza i pierwszej kolumny tabeli CSS

To właśnie ona powinna wyglądać następująco:

Itinerary

znalazłem przełącznik zastosować inny kolor do komórek z pierwszego rzędu, ale teraz utknąłem z komórkami pierwszej kolumnie (Rano, po południu i wieczorem). Udało mi się je wszystkie niebieskie, ale każdy z nich powinien mieć inny odcień niebieskiego ...). To jest mój kod CSS:

table.agenda { 
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; 
border-collapse: collapse; 
width: 100%;} 

table.agenda td, table.agenda th { 
border: 1px solid #fff; 
padding: 8px; 
text-align: center;} 

table.agenda td { 
padding-top: 12px; 
padding-bottom: 12px; 
background-color: rgb(193, 212, 174); 
color: black;} 

th:nth-child(1) { background: white; } 
th:nth-child(2) { background: rgb(72, 151, 54); color: white;} 
th:nth-child(3) { background: rgb(84, 155, 64); color: white;} 
th:nth-child(4) { background: rgb(97, 160, 73); color: white;} 
th:nth-child(5) { background: rgb(110, 165, 82); color: white;} 
th:nth-child(6) { background: rgb(120, 169, 91); color: white;} 

table.agenda tr td:first-child { background: rgb(16, 69, 142); color: white;} 

i to jest mój kod HTML:

<table class="agenda"> 
<thead> 
<tr> 
<th></th> 
<th>August 4</th> 
<th>August 5</th> 
<th>August 6</th> 
<th>August 7</th> 
<th>August 8</th> 
</tr> 
</thead> 
<tbody> 
<tr> 
<td>Morning</td> 
<td>Day 1 Morning</td> 
<td>Day 2 Morning</td> 
<td>Day 3 Morning</td> 
<td>Day 4 Morning</td> 
<td>Day 5 Morning</td> 
</tr> 
<tr> 
<td>Afternoon</td> 
<td>Day 1 Afternoon</td> 
<td>Day 2 Afternoon</td> 
<td>Day 3 Afternoon</td> 
<td>Day 4 Afternoon</td> 
<td>Day 5 Afternoon</td> 
</tr> 
<tr> 
<td>Evening</td> 
<td>Day 1 Evening</td> 
<td>Day 2 Evening</td> 
<td>Day 3 Evening</td> 
<td>Day 4 Evening</td> 
<td>Day 5 Evening</td> 
</tr> 
</tbody> 
</table> 
+0

czy w ogóle możesz zmienić HTML? – VikingBlooded

+1

jeśli możesz zmienić kod HTML, dlaczego po prostu nie dodasz zajęć? –

+1

Dzięki za pomoc! Kod od Maximiliana Laumeistera i scaisEdge działa jak wdzięk i jestem bardzo wdzięczny! przepraszam za spóźnioną odpowiedź, po raz pierwszy napisałem tutaj pytanie i pomyślałem, że dostanę powiadomienie e-mailem, gdy tylko ktoś napisze odpowiedź ... – user5692485

Odpowiedz

7

Można modyfikować kolory każdej komórki w pierwszej kolumnie bez modyfikowania kodu HTML przez łączenie nth-child na tr i first-child na td jak ten:

table.agenda tr:nth-child(1) td:first-child { 
    background: rgb(16, 20, 50); 
    color: white; 
} 

table.agenda tr:nth-child(2) td:first-child { 
    background: rgb(16, 69, 150); 
    color: white; 
} 

table.agenda tr:nth-child(3) td:first-child { 
    background: rgb(16, 69, 255); 
    color: white; 
} 

roboczej żywo Demo:

table.agenda { 
 
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; 
 
    border-collapse: collapse; 
 
    width: 100%; 
 
} 
 

 
table.agenda td, 
 
table.agenda th { 
 
    border: 1px solid #fff; 
 
    padding: 8px; 
 
    text-align: center; 
 
} 
 

 
table.agenda td { 
 
    padding-top: 12px; 
 
    padding-bottom: 12px; 
 
    background-color: rgb(193, 212, 174); 
 
    color: black; 
 
} 
 

 
th:nth-child(1) { 
 
    background: white; 
 
} 
 

 
th:nth-child(2) { 
 
    background: rgb(72, 151, 54); 
 
    color: white; 
 
} 
 

 
th:nth-child(3) { 
 
    background: rgb(84, 155, 64); 
 
    color: white; 
 
} 
 

 
th:nth-child(4) { 
 
    background: rgb(97, 160, 73); 
 
    color: white; 
 
} 
 

 
th:nth-child(5) { 
 
    background: rgb(110, 165, 82); 
 
    color: white; 
 
} 
 

 
th:nth-child(6) { 
 
    background: rgb(120, 169, 91); 
 
    color: white; 
 
} 
 

 
table.agenda tr:nth-child(1) td:first-child { 
 
    background: rgb(16, 20, 50); 
 
    color: white; 
 
} 
 

 
table.agenda tr:nth-child(2) td:first-child { 
 
    background: rgb(16, 69, 150); 
 
    color: white; 
 
} 
 

 
table.agenda tr:nth-child(3) td:first-child { 
 
    background: rgb(16, 69, 255); 
 
    color: white; 
 
}
<table class="agenda"> 
 
    <thead> 
 
    <tr> 
 
     <th></th> 
 
     <th>August 4</th> 
 
     <th>August 5</th> 
 
     <th>August 6</th> 
 
     <th>August 7</th> 
 
     <th>August 8</th> 
 
    </tr> 
 
    </thead> 
 
    <tbody> 
 
    <tr> 
 
     <td>Morning</td> 
 
     <td>Day 1 Morning</td> 
 
     <td>Day 2 Morning</td> 
 
     <td>Day 3 Morning</td> 
 
     <td>Day 4 Morning</td> 
 
     <td>Day 5 Morning</td> 
 
    </tr> 
 
    <tr> 
 
     <td>Afternoon</td> 
 
     <td>Day 1 Afternoon</td> 
 
     <td>Day 2 Afternoon</td> 
 
     <td>Day 3 Afternoon</td> 
 
     <td>Day 4 Afternoon</td> 
 
     <td>Day 5 Afternoon</td> 
 
    </tr> 
 
    <tr> 
 
     <td>Evening</td> 
 
     <td>Day 1 Evening</td> 
 
     <td>Day 2 Evening</td> 
 
     <td>Day 3 Evening</td> 
 
     <td>Day 4 Evening</td> 
 
     <td>Day 5 Evening</td> 
 
    </tr> 
 
    </tbody> 
 
</table>

JSFiddle Wersja: https://jsfiddle.net/wyh11L66/1/

2

dla wiersza można użyć tej (trzeba dopasować kolor, i kopiowane swój kolor z nagłówkiem)

tr:nth-child(1) td:first-child { background: rgb(72, 151, 54); color: white;} 
tr:nth-child(2) td:first-child { background: rgb(72, 151, 54); color: white;} 
tr:nth-child(3) td:first-child { background: rgb(72, 151, 54); color: white;} 
+1

Nice +1, po prostu popraw to tak: 'tr: nth-child (1) td: first-child' i 'tr: nth-child (2) td: first-child' i' tr: nth-child (3) td: first-child' https://jsfiddle.net/Mi_Creativity/dLhbe9da/ –

+0

Dziękuję @ Mi-Creativity Mam aktualizację odpowiedzi z twoją sugestią .. – scaisEdge

+1

Witaj, ale kolejność "tr-tego-dziecka" wciąż jest przesunięta, musi być 1,2 i 3 zamiast tego –