|
-
August 17th, 2009, 02:49 AM
#1
problems aligning
HI All,
I have the following in my markup and am having trouble aligning the checkboxes. Can anyone offer a solution thanks
Code:
<center>
<asp:Panel ID="Panel1" runat="server" Width="286px" >
<center>Languages spoken</center><br />
<div>
<asp:CheckBox ID="chkEnglish" runat="server" Text="English" TabIndex="11"/>
<asp:CheckBox ID="chkFrench" runat="server" Text="French" TabIndex="12" />
<asp:CheckBox ID="chkItalian" runat="server" Text="Italian" TabIndex="13" /></div>
<div>
<asp:CheckBox ID="chkSpanish" runat="server" Text="Spanish" TabIndex="14" />
<asp:CheckBox ID="chkGerman" runat="server" Text="German" TabIndex="15" />
<asp:CheckBox ID="chkDutch" runat="server" Text="Dutch" TabIndex="16" /></div>
<div>
<asp:CheckBox ID="chkRussian" runat="server" Text="Russian" TabIndex="17" />
<asp:CheckBox ID="chkArabic" runat="server" Text="Arabic" TabIndex="18" />
<asp:CheckBox ID="chkHindu" runat="server" Text="Hindu" TabIndex="19" /></div>
<div>
<asp:CheckBox ID="chkChinese" runat="server" Text="Chinese" TabIndex="20" />
<asp:CheckBox ID="chkJapanese" runat="server" Text="Japanese" TabIndex="21" />
<asp:CheckBox ID="chkPortugese" runat="server" Text="Portuguese" TabIndex="22" /></div>
<div>
<asp:CheckBox ID="chkOther" runat="server" Text="Other, please specify: " TabIndex="23" />
<asp:TextBox ID="txtOther" runat="server" TabIndex="24"></asp:TextBox></div>
</asp:Panel>
</center>
My <div> has a style class of:
Code:
div
{
width:100%;
border:none;
text-align:justify;
}
and the font used on the whole page is verdana
Last edited by Bill Crawley; August 17th, 2009 at 03:02 AM.
If you find my answers helpful, dont forget to rate me 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|