Is there a way to rearrange this list so that the buttons appear above the textboxes, like in the
The code is as follows:
<form id="Data" runat="server" class="p-3 mb-2 bg-primary text-dark">
<div class="form-group col">
<label for="Countries" class="control-label">Email address</label>
<asp:DropDownList name="Countries" ID="Countries" runat="server" AppendDataBoundItems="true" OnSelectedIndexChanged="Countries_Selected">
<asp:ListItem Text="<Select country>" Value="0" />
</asp:DropDownList>
</div>
<div class="form-group col">
<label for="DateIn" class="control-label">Pick-up date</label>
<asp:Textbox runat="server" TextMode="Date" name="DateIn" ID="DateIn" Text="Select Return Date">
</asp:Textbox>
</div>
<div class="form-group col">
<label for="DateOut" class="control-label">Drop-off date</label>
<asp:Textbox runat="server" TextMode="Date" name="DateOut" ID="DateOut" Text="Select Pick-up Date">
</asp:Textbox>
</div>
<div class="form-group col">
<label for="smth" class="control-label">Email address</label>
<asp:DropDownList name="smth" ID="smth" runat="server" AppendDataBoundItems="true" OnSelectedIndexChanged="Countries_Selected">
<asp:ListItem Text="<Select country>" Value="0" />
</asp:DropDownList>
</div>
</form>
At present, my page displays in this manner: