我认为这是非常基本的 CSS 问题。
但这是小提琴,下面是代码
<!DOCTYPE html>
<html>
<head>
<style>
#topDiv {
width:280px;
height:500px;
background-color:red;
}
.element{
position:relative;
right :100px;
}
</style>
</head>
<body>
<div id="topDiv">
<input type="button" value="button1" />
<input type="button" value="button2" />
<input type="button" value="button3" />
<input class='element' type="button" value="button4" />
<input type="button" value="button5" />
</div>
</body>
</html>
我可以知道如何将 button5 移动到第一行并作为最后一个元素吗?我将按钮 4 移到了右侧,现在我在第一行有了位置,但按钮 5 仍然在下一行。请问有人吗?
谢谢你的帮助