Blogger Information
Blog 16
fans 0
comment 0
visits 10760
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表格标签应用-2018年8月15日
兔子的博客
Original
959 people have browsed it

  1. 学习PHP为什么必须要掌握HTML?

  因为php动态生成html,所以必须能看懂自己代码生成的代码,其次在开发过程中会接触到很多的html代码如果不会就会造成很大的麻烦。

  2.为什么选择PHP开发动态网站?

  开发迅速降低开发成本,开源免费,版本更新快速迭代方便。

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
<style type="text/css">
	*{margin: 0;padding: 0}
	.box{width: 500px;margin: 0 auto;}
	table{border-collapse: collapse;border: none;}
	table, td{border:solid 1px #000;}
</style>
</head>
<body>
	<div class="box">
	<h2 style="text-align: center;">这是一个表格</h2>
		<table >
			<tr>
				<th>1111</th>
				<th>1111</th>
				<th>1111</th>
				<th>1111</th>
			</tr>
			<tr>
				<td><a href="https://www.baidu.com">百度</a></td>
				<td>22222</td>
				<td>22222</td>
				<td><img src="https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=277770053,3329422653&fm=27&gp=0.jpg"></td>
			</tr>
			<tr>
				<td>22222</td>
				<td>22222</td>
				<td>22222</td>
				<td>22222</td>
			</tr>
			<tr>
				<td>22222</td>
				<td>22222</td>
				<td>22222</td>
				<td>22222</td>
			</tr>
			<tr>
				<td>22222</td>
				<td>22222</td>
				<td>22222</td>
				<td>22222</td>
			</tr>
			<tr>
				<td>22222</td>
				<td>22222</td>
				<td>22222</td>
				<td>22222</td>
			</tr>
		</table>
		<p>这表格是作业</p>
		<ul>
			<li>第一课</li>
			<li>第二课</li>
			<li>第三课</li>
		</ul>
	</div>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

  table标签内部,你可以放置表格的标题、表格行、表格列、表格单元以及其他的表格。

  th定义表格内的表头单元格。此 th 元素内部的文本通常会呈现为粗体。

  tr在表格中定义一行。

  td定义表格中的一个单元格。


Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post