I am faced with a challenge involving two buttons within a div and another button outside the div. My goal is to move one of the buttons inside the div outside, positioning it below the button that is already outside the div. Here is a snippet of the code:
<div class="container">
<button id="Reject">Reject</button>
<button id="Accept">Accept</button>
</div>
<button id="Manage">Settings</button>
In this scenario, I'm looking to relocate the Reject button from inside the div to be placed below the settings button by using CSS alone. The constraint here is that I cannot modify the HTML structure.
Despite trying various techniques such as positioning and :after pseudo-element, I have not been successful in achieving the desired outcome.