html表单左侧不对齐!!!!
求教,,一个超简单表单代码如下如图所示要求“姓名、性别、自我评价”这三样信息应该是左侧第一个字在一条线上的。。。姓名性别,二字之间不能用空格试过padding-left和...
求教,,一个超简单表单 代码如下 如图所示 要求“姓名、性别、自我评价”这三样信息应该是左侧第一个字在一条线上的 。。。 姓名 性别,二字之间不能用空格
试过padding-left 和text-indent 都无法改变 哪里需要加什么吗?
<html>
<head>
<title>表单情况</title>
</head>
<body>
<table align="center" width="500" border="0">
<caption align="center"><h2>学员基本信息</h2></caption>
<form action="XXX.php" method="post">
<tr>
<th>姓名:</th>
<td><input type="text" name="name" size="20"></td>
</tr>
<tr>
<th>性别:</th>
<td>
<input type="radio" name="sex" value="1">男
<input type="radio" name="sex" value="2">女
<input type="radio" name="sex" value="3">保密
</td>
</tr>
<th>自我评价:</th>
<td><textarea name="other" roes="4" cols="20"></textarea></td>
<tr>
</body>
</html> 展开
试过padding-left 和text-indent 都无法改变 哪里需要加什么吗?
<html>
<head>
<title>表单情况</title>
</head>
<body>
<table align="center" width="500" border="0">
<caption align="center"><h2>学员基本信息</h2></caption>
<form action="XXX.php" method="post">
<tr>
<th>姓名:</th>
<td><input type="text" name="name" size="20"></td>
</tr>
<tr>
<th>性别:</th>
<td>
<input type="radio" name="sex" value="1">男
<input type="radio" name="sex" value="2">女
<input type="radio" name="sex" value="3">保密
</td>
</tr>
<th>自我评价:</th>
<td><textarea name="other" roes="4" cols="20"></textarea></td>
<tr>
</body>
</html> 展开
2个回答
展开全部
<html>
<head>
<title>表单情况</title>
</head>
<body>
<table align="center" width="500" border="0">
<caption align="center"><h2>学员基本信息</h2></caption>
<form action="XXX.php" method="post">
<tr>
<th align="left">姓名:</th>
<td><input type="text" name="name" size="20"></td>
</tr>
<tr>
<th align="left">性别:</th>
<td>
<input type="radio" name="sex" value="1">男
<input type="radio" name="sex" value="2">女
<input type="radio" name="sex" value="3">保密
</td>
</tr>
<th align="left">自我评价:</th>
<td><textarea name="other" roes="4" cols="20"></textarea></td>
<tr>
</body>
</html>
很简单的,我随便改了一下,你拿去试试,就在每一个th标签上加一个:<th align="left"> 就好了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询