关于HTML中td的右对齐的解决

[align=left][align=center]<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="" method="post">
<table>
<tr>
<td>用户名 :<td>
<td>
<div>
<input type="text" name="username"/>
</div>
<td>
</tr>
<tr>
<td>密码 :<td>

<td>
<div>
<input type="password" name="pwd"/>
</div>
<td>
</tr>
<tr >
<td></td>
<td colspan="2" align="right"><input type="submit" value="注册"/></td>
</tr>
</table>
</form>
</body>
</html>
关键是clospan的属性必须添加

你可能感兴趣的:(html)