Home  >  Article  >  Web Front-end  >  html table tag

html table tag

尚
Original
2019-10-24 16:02:338576browse

html table tag

In web page production, the table tag is one of the commonly used tags, such as making tables, or using the neatness of tables to set page layouts.

is used to create tables, so the statements for creating tables are between them; modifies table rows; and Modify table data, which is contained in .

The table has many attributes, such as: border, bordercolor, cellspacing, width, height, bgcolor. boder represents the thickness of the outer frame border, bodercolor represents the color of the border, cellspacing represents the gap between cells, width represents the width of the table, height represents the height of the table, and bgcolor represents the background color.

<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<head>
	<title size="10" color="red">welcome to HTML</title>
</head>
<body>
	<table border="1" bordercolor="blue" cellspacing="0" width="400" height="150">
	
		<tr align="center">
			<td>姓名</td>
			<td>性别</td>
			<td>年龄</td>
		</tr>
		<tr>
			<td>carson</td>
			<td>男</td>
			<td>24</td>
		</tr>
		<tr>
			<td>thl</td>
			<td>女</td>
			<td>24</td>
		</tr>
		<tr>
			<td>Alice</td>
			<td>女</td>
			<td>24</td>
		</tr>
		
	</table>
</body>
</html>

Rendering:

html table tag

The above is the detailed content of html table tag. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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
Previous article:HTML5 CanvasNext article:HTML5 Canvas