Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Заголовок документа</title> <style> table { border-collapse: collapse; } table, th, td { border: 1px solid #cccccc; } thead { background-color: #1c87c9; color: #ffffff; } th { height: 50px; text-align: center; } td { padding: 3px 10px; } </style> </head> <body> <h2>Пример свойства border-collapse</h2> <p>Установлено значение "collapse" для свойства border-collapse.</p> <table> <thead> <tr> <th>Заголовок</th> <th>Заголовок</th> <th>Заголовок</th> <th>Заголовок</th> </tr> </thead> <tbody> <tr> <td>Текст</td> <td>Текст</td> <td>Текст</td> <td>Текст</td> </tr> <tr> <td>Текст</td> <td>Текст</td> <td>Текст</td> <td>Текст</td> </tr> </tbody> </table> </body> </html>