HTML에서
태그를 사용하여 테이블 본문을 표시합니다. HTML 태그는 테이블에 본문을 추가하는 데 사용됩니다. tbody 태그는 thead 태그, tfoot 태그와 함께 테이블의 각 부분(제목, 바닥글, 본문)을 식별하는 데 사용됩니다.다음은
태그의 속성입니다.Attributes | Value | Description |
---|---|---|
align
|
오른쪽 왼쪽 가운데 justify char |
DEPRECATED - 시각적 정렬. |
char | char | DEPRECATED - 텍스트를 정렬할 문자를 지정합니다. align = "char"일 때 사용됩니다. |
charoff | pixel 또는 % | DEPRECATED - 첫 번째 문자에 맞춰 정렬할 정렬 오프셋(픽셀 또는 백분율 값으로 표시)을 지정합니다. align = "char"일 때 사용됩니다. |
valign | top middle bottom baseline |
DEPRECATED - 수직 정렬. |
다음 코드를 실행하여 HTML로 테이블 본문을 표시할 수 있습니다.
<!DOCTYPE html> <html> <head> <title>HTML tbody Tag</title> </head> <body> <table style = "width:100%" border = "1"> <thead> <tr> <td colspan = "4">This is the head of the table</td> </tr> </thead> <tfoot> <tr> <td colspan = "4">This is the foot of the table</td> </tr> </tfoot> <tbody> <tr> <td>Cell 1</td> <td>Cell 2</td> <td>Cell 3</td> <td>Cell 4</td> </tr> <tr> ...more rows here containing four cells... </tr> </tbody> <tbody> <tr> <td>Cell 1</td> <td>Cell 2</td> <td>Cell 3</td> <td>Cell 4</td> </tr> <tr> ...more rows here containing four cells... </tr> </tbody> </table> </body> </html>
위 내용은 HTML로 테이블 본문을 표시하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!