我有一个看似容易解决的问题,但我正在苦苦挣扎。如何在不使用 BR 元素的情况下让这两个输入与表单右侧对齐?
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
form {
text-align: right;
}
input {
width: 100px;
}
</style>
</head>
<body>
<form>
<input name="declared_first" value="above" />
<br/> <!-- I want to get rid of this -->
<input name="declared_second" value="below" />
</form>
</body>
</html>
我只希望第一个输入出现在第二个输入上方,都在右侧。