I have 4 buttons on the start page. The first and last button are set to visible and the two middle buttons are set to false visibility.
My problem is that their is white space between the first and last button because of the <br / > that are after the two middle buttons that are invisible. Is there any other way of doing this without using a table?
Code:
<asp:Button ID="btnviewtracks" class="button_schedcontinue" Visible="true" runat="server" Text="View Tracks >>" /><br />
<asp:Button ID="btnRequestClass" class="button_schedcontinue" runat="server" Visible="False" Text="Update Status" AutoPostBack="True" /> <br />
<asp:Button ID="btnviewclass" class="button_schedcontinue" Visible="false" runat="server" Text="View All Classes >>" /> <br />
<asp:Button ID="btninstructor" class="button_schedcontinue" Visible="true" runat="server" Text="Instructor Page >>" />
My problem is that their is white space between the first and last button because of the <br / > that are after the two middle buttons that are invisible. Is there any other way of doing this without using a table?
Comment