我在我的HTML文檔的<form>
標記內創建了3個嵌套表格中的1個。我插入輸入字段以在文本右側創建文本框。這一切都成爲我唯一的問題是,以下單元格:「名字,姓氏,地址,城市,州,郵政編碼和縣」不是直接相互排列,以保持單元格對齊和文本盒子對齊。我如何對齊每個部分?如果不是,請希望我解釋清楚,請進一步澄清。任何關於這個小問題的幫助將不勝感激。表...對齊單元格和輸入框
這裏是我到目前爲止的代碼,所以你可以看到我做了什麼:
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<head>
<img src="j0182695_downsized.jpg" alt="Oatmeal Raisin cookies" style="float: left" >
</head>
<body background="back-225.gif">
<h1 style="text-align: center; color: red; font-family: Arial, Helvetica, sans-serif;">Cookies</h1>
<table width="500" border="0">
<tr>
<td align="center"><a href="about.htm">About Us</a></td>
<td align="center"><a href="mailto:[email protected]">Contact Us</a></td>
<td align="center"><a href="orderform.htm">Place an Order</a></td>
<td align="center"><a href="recipe.htm">Sample Recipe</a></td>
</tr>
</table>
<form name="Web Order Form" id="Web Order Form">
<table border="0" cellpadding="2" width="65%">
<tr>
<td>Personal Information</td>
</tr>
<tr>
<td>First Name:
<input name="fname" id="fname" size="30" type="text" />
</td>
</tr>
<tr>
<td>Last Name:
<input name="lname" id="lname" size="30" type="text" />
</td>
</tr>
<tr>
<td>Address:
<input name="address" id="address" size="30" type="text" />
</td>
</tr>
<tr>
<td>City:
<input name="city" id="city" size="35" type="text" />
</td>
</tr>
<tr>
<td>State:
<input name="state" id="state" size="3" type="text" />
</td>
</tr>
<tr>
<td>Zip Code:
<input name="zip" id="zip" size="10" type="text" />
</td>
</tr>
<tr>
<td>Country:
<input name="country" id="country" size="10" type="text" />
</td>
</tr>
</table>
</form>
這不是編程相關的。這個問題可能更適合http://doctype.com/ – ChrisInEdmonton 2010-02-03 18:57:00
@ChrisInEdmonton:抱歉,我認爲這是因爲它處理HTML。我會檢查你提到的網站。謝謝你讓我知道。 – Ashley 2010-02-03 19:16:36
我希望你喜歡Doctype! – ChrisInEdmonton 2010-02-03 20:03:07