How can we add a table row in HTML?

WBOY
Release: 2023-09-07 15:09:02
forward
1241 people have browsed it

How can we add a table row in HTML?

Add table rows using the

tag. The HTML tag is used to specify a table row in the table. The

HTML

tag also supports the following additional attributes −bgcolorrgb(x,x,x)Char#CharacterCharoffpixels or %##has Deprecated ValignDeprecated Example
Attribute

Value

Description

Align

right

left

center

justify

char

##Deprecated − Visual alignment .

#hexcode

colorname

Deprecated − Specifies the background color of table cells.

Deprecated − Specifies the characters to align text. Used when align = "char".

− Specifies the alignment offset (expressed as a pixel or percentage value) aligned with the first character specified by the char attribute. Used when align = "char".

topmiddlebottombaseline − Vertical alignment

You can try running the following code to learn how to add a row in an HTML table−

<!DOCTYPE html>
<html>
   <head>
      <title>HTML tr Tag</title>
   </head>
   <body>
      <table border = "1">
         <tr>
            <th>Cricketers</th>
            <th>Ranking</th>
         </tr>
         <tr>
            <td>Virat Kohli</td>
            <td>1</td>
         </tr>
         <tr>
            <td>AB de Villiers</td>
            <td>2</td>
         </tr>
      </table>
   </body>
</html>
Copy after login

The above is the detailed content of How can we add a table row in HTML?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!