الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> table { width: 100%; border-collapse: collapse; } th, td { padding: 10px; text-align: left; border-bottom: 1px solid #ddd; } </style> </head> <body> <h1>Table rows dividers</h1> <p>Use the border-bottom property to add borders at the bottom of each cell in the table.</p> <table> <tr> <th>User</th> <th>Country</th> </tr> <tr> <td>Mhamad</td> <td>Lebanon</td> </tr> <tr> <td>Hala</td> <td>Egypt</td> </tr> <tr> <td>Saad</td> <td>Yaman</td> </tr> <tr> <td>Moncef</td> <td>Algeria</td> </tr> </table> </body> </html>