亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

我的demo

Original 2019-04-20 12:33:14 185
abstract:<!DOCTYPE html> <html> <head> <title>小案例</title> <meta charset="utf-8"> <style type="text/css"> table{border: 1px&
<!DOCTYPE html>
<html>
<head>
	<title>小案例</title>
	<meta charset="utf-8">
	<style type="text/css">
	table{border: 1px solid #ccc;border-collapse: collapse;}	
	th,td{text-align: center;border: 1px solid #ccc}
	</style>
</head>
<body>
	<h2>表格 </h2>
	<section>
		<table>
			<tr>
				<th>這是表頭1</th>
				<th>這是表頭2</th>
				<th>這是表頭3</th>
			</tr>
			<tr>
				<td colspan="3">這是一列</td>
			</tr>
			<tr>
				<td rowspan="2" >這是一行</td>
				<td>2</td>
				<td>3</td>
			</tr>
			<tr>
				<td>2</td>
				<td>3</td>
			</tr>
		</table>
	</section>

	 <h2>表單</h2>
	<section>
		<form method="GET" action="ipnx.cn">
			<p>用戶名<input type="text" name="text"></p>
			<span style="display: inline-block; width: 46px">密碼</span><input type="password" name="password">
			<p style="margin-left: 175px"><input type="submit" name="submit"></p>
		</form>
	</section>
</body>
</html>


Correcting teacher:西門大官人Correction time:2019-04-20 13:43:43
Teacher's summary:思考一下,表單中的method起什么作用?action呢?

Release Notes

Popular Entries