亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML中的表單Form實現(xiàn)居中效果

  發(fā)布時間:2021-05-25 17:04:10   作者:Lzy9912   我要評論
之前碰到一個作業(yè),給了一張圖片,讓按照圖片樣式做一個表單,但是一直表單無法居中,在網(wǎng)上找了各種例子之后,終于成功,今天就來介紹一下,感興趣的可以了解一下

之前碰到一個作業(yè),給了一張圖片,讓按照圖片樣式做一個表單,但在所有功能都實現(xiàn)后,發(fā)現(xiàn)無法讓表單居中,一直縮在左上角,看起來很難看。在經(jīng)過了各種修改后,終于成功將表單居中,下面分享一下我所經(jīng)歷過程中的錯誤與最終結(jié)果。(因為做這部分作業(yè)的時候還沒有學(xué) css,所以沒用)

1、剛做出來的樣子

<form>
			<label for="firstname">名字:</label>
			<input type="text" name="firstname" id="firstname" required="required" value="" /><br />
		
			<label for="lastname">姓氏:</label>
			<input type="text" name="lastname" id="lastname" required="required" value="" /><br />
		
			<label for="login name">登錄名:</label>
			<input type="text" name="login name" required="required" pattern="^\w{4,8}$" id="login name" value="" />(可包含a-z、0-9和下劃線)<br />
		
			<label for="password">密碼:</label>
			<input type="password" name="password" required="required" pattern="^[a-zA-Z]\w{5,17}$" id="password" value="" />(至少包含6個字符)<br />
		
			<label for="password2">再次輸入密碼:</label>
			<input type="password" name="password2" required="required" pattern="^[a-zA-Z]\w{5,17}$" id="password2" value="" /><br />
		
			<label for="myEmail">電子郵箱:</label>
			<input type="email" name="myEmail" id="myEmail" value="" />(必須包含@字符)
		</form>

看起來很別扭,所以要繼續(xù)改進一下。。。

2、經(jīng)過修改后

在這里插入圖片描述
 

看起來好像更別扭了,但是實現(xiàn)了居中,到這里時,我也不知道自己用的 < center> 對不對。。。

<center>
	<form>
		`````
		`````
	</ form>
</ center>

3、使用表格布局后

在這里插入圖片描述
 

這就是在經(jīng)過了一晚上的修改后,最終呈現(xiàn)的結(jié)果。

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<link rel="icon" type="text/css" href="./img/favicon.png"/>
		<title></title>
	</head>
	<body>
		<center>
		<form action="Success.html" target="_blank" method="get">
			<table border="0" cellspacing="" cellpadding="">
				<tr>
					<td><label for="firstname">名字:</label></td>
					<td><input type="text" name="firstname" id="firstname" required="required" value="" /></td>
				</tr>
				<tr>
					<td><label for="lastname">姓氏:</label></td>
					<td><input type="text" name="lastname" id="lastname" required="required" value="" /></td>
				</tr>
				<tr>
					<td><label for="login name">登錄名:</label></td>
					<td><input type="text" name="login name" required="required" pattern="^\w{4,8}$" id="login name" value="" />(可包含a-z、0-9和下劃線)</td>
				</tr>
				<tr>
					<td><label for="password">密碼:</label></td>
					<td><input type="password" name="password" required="required" pattern="^[a-zA-Z]\w{5,17}$" id="password" value="" />(至少包含6個字符)</td>
				</tr>
				<tr>
					<td><label for="password2">再次輸入密碼:</label></td>
					<td><input type="password" name="password2" required="required" pattern="^[a-zA-Z]\w{5,17}$" id="password2" value="" /></td>
				</tr>
				<tr>
					<td><label for="myEmail">電子郵箱:</label></td>
					<td><input type="email" name="myEmail" id="myEmail" value="" />(必須包含@字符)</td>
				</tr>
				<tr>
					<td><label>性別:</label></td>
					<td>
						<input type="radio" name="sex" id="" value="male" />男<img src="./img/Male.gif" >
						<input type="radio" name="sex" id="" value="female" />女<img src="./img/Female.gif" >
					</td>
				</tr>
				<tr>
					<td><label>頭像:</label></td>
					<td><input type="file" name="myFile" /></td>
				</tr>
				<tr>
					<td><label>愛好:</label></td>
					<td>
						<input type="checkbox" name="hobby" id="" value="運動" />運動 
						<input type="checkbox" name="hobby" id="" value="聊天" />聊天
						<input type="checkbox" name="hobby" id="" value="玩游戲" />玩游戲
					</td>
				</tr>
				<tr>
					<td><label>出生日期:</label></td>
					<td>
						<input type="text" size="1" name="year"placeholder="yyyy" id="" value="" />年
						<select name="month">
							<option value ="0">[選擇月份]</option>
							<option value ="1">1月</option>
							<option value ="2">2月</option>
							<option value ="3">3月</option>
							<option value ="4">4月</option>
							<option value ="5">5月</option>
							<option value ="6">6月</option>
							<option value ="7">7月</option>
							<option value ="8">8月</option>
							<option value ="9">9月</option>
							<option value ="10">10月</option>
							<option value ="11">11月</option>
							<option value ="12">12月</option>
						</select>
						<input type="text" size="1" name="day" placeholder="dd"/>日
					</td>
				</tr>
			</table>
			<input type="image" src="img/submit.gif" value="提交" />
			<input type="image" src="img/reset.gif" onclick="reset();return false;" value="重填" />		
		</form>
		</center>
	</body>
</html>

若覺得左邊的標(biāo)簽左對齊不好看,也可以在 < td >標(biāo)簽中加入align=“right”,使文字右對齊

<td align="right"><label for="firstname">名字:</label></td>

在這里插入圖片描述

到此這篇關(guān)于HTML中的表單Form實現(xiàn)居中效果的文章就介紹到這了,更多相關(guān)HTML表單Form居中內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!

相關(guān)文章

  • 表單元素和文字垂直居中對齊問題解決整理

    為了使表單元素和文字都垂直居中對齊,當(dāng)文本框和下拉框都沒問題,但是單選框和復(fù)選框就了,經(jīng)過反復(fù)測試終于完整搞定與大家分享,感興趣的各位可不要錯過了哈
    2013-03-21
  • 表單元素垂直居中完美解決方案

    單選框和復(fù)選框面積很小,不容易點擊,造成許多用戶的困擾,用戶體驗不佳,所以表單元素的垂直居中讓很多網(wǎng)頁布局師為之而困擾,想實現(xiàn)垂直居中效果還真需要一番功夫,還好
    2013-02-16

最新評論