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
Eine zufällige Auswahl von „Bausteinen” (Snippets) aus den Bereichen CSS, PHP, JavaScript und MySQL.
PHP - Alle Dateien in einem Verzeichnis löschen