我正在尝试在字段集中格式化表格,两者都在表单内。这是HTML代码:
<!DOCTYPE html>
<html>
<head>
<style>
fieldset{width:90%;}
table {width:100%;border-collapse:collapse;}
table,td {border:1px solid black;}
td.abc {width:40%;}
</style>
</head>
<body>
<form>
<fieldset>
<legend>Text Text</legend>
<table>
<tr>
<td> Text </td>
<td class="abc">
<input size='25' type="text"/>
<select>
<option>Text text text</option>
<option> Text </option>
</select>
</td>
<td>
Text text
</td>
</tr>
<tr>
<td> Text </td>
<td class="abc">
<input size='25' type="text"/>
<select>
<option>Text text text</option>
<option> Text </option>
</select>
</td>
<td>
Text text
</td>
</tr>
</table>
</fieldset>
</form>
</body>
</html>
我的问题是,当我放大浏览器(通过按 ctr 和 + 键)时,如何使文本输入和选择保持在同一行。提前致谢!