The <tbody> tag is used to define the style of the table body.
Align stands for horizontal alignment, where Left means left, Center means center, and Right means right. vlign stands for vertical alignment, Top means top, Middle means center, and Bottom means bottom. File example: 10-45.htm The <tbody> tag sets the table body style. 01 <!-- ------------------------------ --> 02 <!-- File example: 10-45.htm --> 03 <!-- File Description: Set the table body style--> 04 <!-- ------------------------------ --> 05 <html> 06 <head> 07 <title>Set the table body style</title> 08 </head> 09 <body> 10 <table border=3 width=400 height=100 bordercolor=#336699 align="Center"> 11 <thead align=center bgcolor=#00ccff> 12 <tr> 13 <td colspan=2>Web page creation software</td> 14 </tr> 15 </thead> 16 <tbody align=Left bgcolor=#00cccc> 17 <tr> 18 <td>Web Graphics Software</td><td>Fireworks</td> 19 </tr> 20 <tr> 21 <td>Web page creation software</td><td>Dreamweaver</td> 22 </tr> 23 <tr> 24 <td>Web animation software</td><td>Flash</td> 25 </tr> 26 </tbody> 27 </table> 28 </body> 29 </html> The file shows that line 16 sets the style of the table body, and line 26 sets the end of the table body. |
<<: JS implements circular progress bar drag and slide
>>: Briefly talk about mysql left join inner join
1. Introduction to Layer 4 Load Balancing What is...
Achieve resultsImplementation Code html <input...
This article shares the specific code of js to im...
Based on past experience, taking notes after comp...
React is a JavaScript library for building user i...
environment Hostname IP address Serve Prometheus ...
Scenario simulation: The operation and maintenanc...
Use JOIN instead of sub-queries MySQL supports SQ...
Many times when learning web page development, th...
1. Enter the container docker run [option] image ...
In Ubuntu, you often encounter the situation wher...
1. What is ElasticSearch? Elasticsearch is also d...
Author: Ding Yi Source: https://chengxuzhixin.com...
Table of contents 1. Scopes are expressed in diff...
During the development and debugging process, it ...