Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> table { border: 1px solid purple; } table td { padding: 10px 30px; } /* Selects the last 3 elements */ tr:nth-last-child(-n+3) { background-color: #a76db5; } /* Selects every element starting from the second item */ tr:nth-last-child(n+2) { color: black; text-transform: uppercase; } tr:nth-last-child(2) { font-weight: 600; color: white; font-style: italic; font-size: 20px; } </style> </head> <body> <table> <tbody> <tr> <td>Line №1</td> </tr> <tr> <td>Line №2</td> </tr> <tr> <td>Line №3</td> </tr> <tr> <td>Line №4</td> </tr> <tr> <td>Line №5</td> </tr> </tbody> </table> </body> </html>