登錄框居中,求大神幫忙補全代碼,讓整體居中.
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>文本輸入框、密碼輸入框</title>
<style type="text/css">div{text-align:center;}
</style>
</head>
<body>
<form ?method="post" action="save.php">
賬戶:
????<input ?type="text" ?name="myName" />
????<br>
????密碼:
<input ?type="password" ?name="pass" />
</form>
</body>
</html>
2021-07-12
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>文本輸入框、密碼輸入框</title>
<style type="text/css">
div
{
? ? text-align:center;
? ??
}
</style>
</head>
<body>
<div>
<form? method="post" action="save.php">
賬戶:
? ? <input? type="text"? name="myName" />
? ? <br>
? ? 密碼:
<input? type="password"? name="pass" />
</form>
</div>
</body>
</html>
2019-01-12
采用嵌入式, body{text-align:center;}
2018-12-19
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>文本輸入框、密碼輸入框</title>
<style type="text/css">div{text-align:center;}
.a{text-align: center;}
</style>
</head>
<body>
<form? method="post" action="save.php">
<div class="a">賬戶:
? ? <input? type="text"? name="myName" />
? ? <br>
? ? 密碼:
<input? type="password"? name="pass" />
</div>
</form>
</body>
</html>