CSS - Nur gefüllte Tabellenzellen hervorheben
Blindtext 1 | |
Blindtext 2 |
<style>
/* Nur gefüllte Tabellenzellen hervorheben */
td:not(:empty) {
background-color: Lightskyblue;
}
</style>
<table border=1>
<tr>
<td>Blindtext 1</td>
<td></td>
</tr>
<tr>
<td></td>
<td>Blindtext 2</td>
</tr>
</table>
Bausteine Alle Anzeigen
Eine zufällige Auswahl von Codeschnipseln
aus den Bereichen HTML, CSS,
PHP, JavaScript und MySQL.
<optgroup> Auswahlliste - Optionsgruppe
CSS - Link farbig unterstreichen
PHP - Session automatisch nach 5 Minuten Inaktivität beenden