Trotzdem ist da auch ein Fehler drin
Mittlerweile sehe ich das nicht mehr so wirklich als Fehler an, dieser Unterschied ergibt sich aus der unterschiedlichen Spaltenanzahl der Tabellen. Die Tabellen für Eingabegeräte und Ausgabegeräte haben 9 Spalten, die Tabelle für Informationen zu Content Decryption Modules (CDM) hat nur 5 Spalten, deshalb ist die Tabelle nicht so breit wie die beiden anderen.
Ich habe das jetzt so ↓ gelöst.
CSS
#contents > table {
background-color: #C0C4C8 !important;
}
#media-content-decryption-modules-tbody > tr:nth-child(1) > th:nth-child(1),
#media-content-decryption-modules-tbody > tr:nth-child(2) > th:nth-child(5),
#media-content-decryption-modules-tbody > tr:nth-child(3) > td:nth-child(5),
#media-content-decryption-modules-tbody > tr:nth-child(4) > td:nth-child(5) {
border-right: 2px solid #9CA4AB !important;
}
P.S.:
Die Spaltenbreite der 3 Tabellen hängt voneinander ab, deshalb habe ich auch das ↓ erst einmal auskommentiert.