Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <style> table.bottomBorder { border-collapse: collapse; } table.bottomBorder td, table.bottomBorder th { border-bottom: 1px solid yellowgreen; padding: 10px; text-align: left; } </style> <table class="bottomBorder"> <tr> <th>Table Header</th> <th>Table Header</th> <th>Table Header</th> </tr> <tr> <td>Table cell</td> <td>Table cell</td> <td>Table cell</td> </tr> <tr> <td>Table cell</td> <td>Table cell</td> <td>Table cell</td> </tr> </table>