I'm currently working with Bootstrap 4 and React. I'm attempting to centralize a h4 heading while also aligning a couple of buttons to the right, all within the same row. The issue I'm facing is that the h4 heading is only centered within the remaining space after the buttons, rather than the entire width.
My goal is to have the h4 heading centered across the entire width, while still keeping the buttons aligned to the right in the same row.
Could someone please advise me on how to achieve this?
<div>
<div className="float-right">
<EditButton /> <DeleteButton />
</div>
<h4 style={{ textAlign: "center" }}>Application Name</h4>
</div>