<div className="content">
<div style={{ float: "left" }}> {pedido.nombre}</div> //name
<div style={{ float: "right" }}> ${pedido.precio}</div> //price
</div>
Run Code Online (Sandbox Code Playgroud)
它应该在左侧显示名称,在右侧显示价格,但它保留在另一侧

在那里

关键是justify-content: space-between:
.content {
display: flex;
justify-content: space-between;
}Run Code Online (Sandbox Code Playgroud)
<div class="content">
<div style="background: yellow">Product name</div>
<div style="background: orange">Price</div>
</div>Run Code Online (Sandbox Code Playgroud)
两个 div 之间会有空间。